.login-page {
  min-height: 100vh;
  background: #004974;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: "Inter", sans-serif;
  margin: 0 !important;
}
@media only screen and (max-width : 480px) {
  .login-page {
    padding: 15px;
  }
}

.login-container {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.login-logo {
  margin-bottom: 40px;
}
.login-logo .logo {
  height: 60px;
  width: auto;
  max-width: 372px;
}
@media only screen and (max-width : 480px) {
  .login-logo .logo {
    height: 45px;
  }
}

.login-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.15);
  text-align: left;
  width: 100%;
  max-width: 600px;
}
@media only screen and (max-width : 768px) {
  .login-card {
    padding: 40px;
    border-radius: 20px;
  }
}
@media only screen and (max-width : 480px) {
  .login-card {
    padding: 30px 24px;
    border-radius: 16px;
  }
}

.login-form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.login-header {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}

.login-title {
  align-self: stretch;
  font-family: "Mikado", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 38.4px;
  color: #004974;
  margin: 0;
  word-wrap: break-word;
}
@media only screen and (max-width : 480px) {
  .login-title {
    font-size: 28px;
    line-height: 33.6px;
  }
}
.login-title.forgot-password {
  text-align: center;
}

.login-messages {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
}
.login-messages.success {
  background-color: #D4F6D4;
  color: #1B5E20;
  border: 1px solid #4CAF50;
}
.login-messages.error {
  background-color: #FFE6E6;
  color: #C62828;
  border: 1px solid #F44336;
}
.login-messages.warning {
  background-color: #FFF3CD;
  color: #856404;
  border: 1px solid #FFC107;
}

.login-form {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.login-form .form-group {
  width: 100%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.login-form .form-group label {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #434A4F;
  line-height: 24px;
  margin: 0;
}
.login-form .form-group label .required {
  color: #FA7E73;
}
.login-form .form-group .form-control {
  width: 100%;
  height: 48px;
  padding: 10px 16px;
  border: none;
  outline: 1px solid rgba(85, 86, 102, 0.25);
  outline-offset: -1px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #434A4F;
  background: #FFFFFF;
  transition: all 0.2s ease;
  box-sizing: border-box;
  line-height: 24px;
}
.login-form .form-group .form-control:focus {
  outline: 2px solid #004974;
  outline-offset: -2px;
}
.login-form .form-group .form-control::-moz-placeholder {
  color: rgba(67, 74, 79, 0.5);
  opacity: 1;
}
.login-form .form-group .form-control::placeholder {
  color: rgba(67, 74, 79, 0.5);
  opacity: 1;
}
@media only screen and (max-width : 480px) {
  .login-form .form-group .form-control {
    font-size: 16px;
  }
}
.login-form .password-group .password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.login-form .password-group .password-input-wrapper .form-control {
  padding-right: 50px;
}
.login-form .password-group .password-input-wrapper .password-toggle {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #A1A4A7;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.login-form .password-group .password-input-wrapper .password-toggle:hover {
  color: #434A4F;
}
.login-form .password-group .password-input-wrapper .password-toggle .eye-icon {
  width: 24px;
  height: 24px;
}

.form-options {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 12px;
  margin-bottom: 32px;
  overflow: hidden;
}
@media only screen and (max-width : 480px) {
  .form-options {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.form-options .remember-me {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.form-options .remember-me input[type=checkbox] {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(136, 136, 136, 0.5);
  border-radius: 3px;
  cursor: pointer;
  background: white;
  margin: 0;
}
.form-options .remember-me input[type=checkbox]:checked {
  background-color: #004974;
  border-color: #004974;
}
.form-options .remember-me label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #434A4F;
  line-height: 21px;
  cursor: pointer;
  margin: 0;
}
.form-options .forgot-password {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #004974;
  line-height: 21px;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.form-options .forgot-password:hover {
  color: #003659;
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  padding: 16px 20px;
  background: #8BC251;
  border: none;
  border-radius: 100px;
  font-family: "Mikado", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.32px;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.login-btn:hover:not(:disabled) {
  background: #7CB342;
  box-shadow: 0 4px 12px rgba(139, 194, 81, 0.3);
}
.login-btn:active {
  transform: translateY(1px);
}
.login-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.login-btn .btn-loader .spinner {
  animation: spin 1s linear infinite;
  width: 20px;
  height: 20px;
}

.reset-description {
  align-self: stretch;
  text-align: center;
  color: #434A4F;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  margin: 0;
}

.login-switch-link {
  align-self: stretch;
  text-align: center;
}
.login-switch-link .switch-text {
  color: #434A4F;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
}
.login-switch-link .switch-link {
  color: #004974;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  word-wrap: break-word;
}
.login-switch-link .switch-link:hover {
  text-decoration: underline;
}

.reset-success-wrapper {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.success-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.success-icon .email-icon {
  position: relative;
  display: inline-block;
}
.success-icon .check-mark {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: white;
  border-radius: 50%;
  padding: 2px;
}

.success-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.success-content .success-title {
  color: #004974;
  font-size: 32px;
  font-family: "Mikado", sans-serif;
  font-weight: 700;
  line-height: 38.4px;
  margin: 0;
  word-wrap: break-word;
}
@media only screen and (max-width : 480px) {
  .success-content .success-title {
    font-size: 28px;
    line-height: 33.6px;
  }
}
.success-content .success-message {
  color: #434A4F;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  word-wrap: break-word;
}

.register-link {
  margin-top: 0;
  text-align: center;
}
.register-link p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}
.register-link p a {
  color: #007093;
  text-decoration: none;
  font-weight: 500;
}
.register-link p a:hover {
  color: #005A73;
  text-decoration: underline;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.login-messages {
  animation: fadeIn 0.3s ease;
}

body.page-template-login {
  margin: 0 !important;
  padding: 0 !important;
}
body.page-template-login #main,
body.page-template-login .main-wrapper,
body.page-template-login .site-content {
  margin: 0 !important;
  padding: 0 !important;
}
body.page-template-login header,
body.page-template-login footer,
body.page-template-login .header,
body.page-template-login .footer {
  display: none !important;
}/*# sourceMappingURL=login.css.map */