
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; 
}

body {
  margin: 0;
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  font-weight: normal;
  background: #f8f9fd;
  color: gray; 
}

img {
  vertical-align: middle;
  border-style: none; 
}

h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Lato", Arial, sans-serif;
  color: #000; 
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; 
}
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; 
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important; 
}

.col-md-6, .col-md-12, .col-lg-5 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px; 
}

@media (min-width: 768px) {
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; 
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; 
  }
}

@media (min-width: 992px) {
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; 
  }
}

.d-flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; }
.text-center { text-align: center !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-3 { padding: 1rem !important; }
.px-5 { padding-right: 3rem !important; padding-left: 3rem !important; }

@media (min-width: 768px) {
  .p-md-5 { padding: 3rem !important; }
}

.form-group {
  margin-bottom: 1rem;
  position: relative; 
}

.form-control {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0.375rem 0.75rem;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; 
}
.form-control:focus {
  outline: none !important;
  background: rgba(0, 0, 0, 0.07);
  border-color: transparent; 
}
.form-control::-webkit-input-placeholder { color: rgba(0, 0, 0, 0.2) !important; }
.form-control::placeholder { color: rgba(0, 0, 0, 0.2) !important; }

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 40px;
  cursor: pointer;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; 
}

.btn-success {
  color: #fff !important;
  background-color: #28a745 !important;
  border-color: #28a745 !important; 
}
.btn-success:hover {
  background-color: #218838 !important;
  border-color: #1e7e34 !important; 
}

.rounded { border-radius: 0.25rem !important; }
.rounded-left { border-top-left-radius: 0.25rem !important; border-bottom-left-radius: 0.25rem !important; }
.ftco-section {
  padding: 7em 0; 
}

.login-wrap {
  position: relative;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24); 
}

.form-group .submit {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto; 
}
@media (max-width: 767.98px) {
  .form-group .submit { top: 0; } 
}