@import url('base/_variables.css');
@import url('components/_buttons.css');


body {
  margin: 0;
  padding: 0;
}

:focus {
  outline: none !important;
  box-shadow: none !important;
}

.login_area {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  background: url(../images/login_bg.jpg) no-repeat center #002047;
  background-size: cover;
}

.login_white {
  width: 750px;
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
}

.lg_form_left {
  min-height: 410px;
}

.login_bg {
  display: flex !important;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  background: #ececec;
  border-radius: 20px 0 0 20px;
}

.lgn_form_area {
  padding-left: 10px;
}

.login_bg h3 {
  color: var(--bs-primary);
  font-size: 24px;
}

.p_right {
  padding-right: 68px !important;
}

.heading_title {
  font-size: 32px;
  padding-bottom: 8px;
  margin: 0;
  color: #000;
  font-weight: 600;
}

.sub_title,
.form-label,
.form-check-label,
.forgot_link,
.otp_timer p,
.resend_code a,
.pass_hint,
.email-error,
.small_text {
  font-size: var(--bs-font-size);
}

.sub_title {
  color: #848484;
  line-height: 16px;
}

.form-control {
  border: 1px solid var(--bs-border);
}

.form-label {
  margin-bottom: 5px;
  font-weight: 600;
}

.field-icon {
  position: absolute;
  right: 14px;
  top: 6px;
  z-index: 2;
  color: #605E5C;
  cursor: pointer;
  padding: 8px;
  font-size: 18px;
}

.form-check {
  position: relative;
  top: -2px;
}

.form-check-input {
  border: 1px solid #605E5C;
  width: 16px;
  height: 16px;
  border-radius: 2px;
}

.form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.forgot_link {
  color: var(--bs-primary) !important;
  font-weight: 600;
  text-decoration: none;
}

.forgot_pass_div {
  text-align: right;
}

.otp_timer p,
.resend_code a {
  color: #848484;
}

.resend_code a {
  font-weight: 600;
  color: #D9D9D9;
  text-decoration: none;
}

.pass_hint {
  color: #848484;
  margin-top: 4px;
}

.pass_changed_box {
  display: flex;
  align-items: center;
  position: relative;
}

.pass_changed_box .heading_title {
  font-weight: 700;
}

.pass_changed_box .login_btn_box {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 20px;
  max-width: 350px;
  margin: 0 auto;
}

.pass_changed_box .login_title_top {
  margin-top: -40px;
}

.resend_code_active {
  color: var(--bs-primary) !important;
}

::placeholder {
  color: rgba(96, 94, 92, 0.6) !important;
  font-size: var(--bs-font-size);
}

.was-validated .form-control:invalid,
.was-validated .form-control:valid {
  background: transparent;
}

#client_password_verification .heading_title {
  margin-top: 30px;
}

.alert {
  font-size: 12px;
}

.close {
  display: none;
}

.error-msg .alert {
  padding: .5rem !important;
}

/* -------- Responsive -------- */
@media (max-width: 991px) {
  .login_area {
    height: 100%;
    padding: 50px 0;
    background-size: cover;
  }

  .lg_form_left {
    min-height: auto;
  }

  .login_bg {
    padding: 35px 0 !important;
    border-radius: 20px 20px 0 0;
    flex-direction: column;
  }

  .p_right {
    padding-right: 21px !important;
  }

  .pass_changed_box .login_btn_box {
    position: relative;
  }

  .lg_form_right {
    min-height: 250px;
  }

  .pass_changed_box .login_title_top {
    margin-top: 0;
  }

  .heading_title {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .forgot_pass_div {
    text-align: left;
  }
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none;
}

.btn-outline-primary {
  border: 1px solid var(--bs-primary);
  color: var(--bs-primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--bs-primary) !important;
  color: var(--bs-white);
}

.rotate {
  animation: rotation 1s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

#refresh-captcha:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.divider {
		text-align: center;
		margin: 10px 0;
		position: relative;
	}

	.divider:before {
		content: "";
		height: 1px;
		background: #ddd;
		position: absolute;
		left: 0;
		right: 0;
		top: 50%;
	}

	.divider span {
		background: #fff;
		padding: 0 10px;
		position: relative;
		color: #666;
	}