@keyframes skeleton-pulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.forgot-password-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 56px - 3rem);
  padding: 2rem;
}
@media (max-width: 768px) {
  .forgot-password-container {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 480px) {
  .forgot-password-container {
    padding: 1rem 0.5rem;
  }
}

.forgot-password-card {
  width: 100%;
  max-width: 480px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition-property: transform, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
.forgot-password-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.forgot-password-header {
  padding: 1.5rem;
  background-color: #1a56db;
  color: #ffffff;
  text-align: center;
}
.forgot-password-header .forgot-password-logo {
  margin-bottom: 1rem;
}
.forgot-password-header .forgot-password-logo svg, .forgot-password-header .forgot-password-logo img {
  height: 60px;
  width: auto;
}
.forgot-password-header .forgot-password-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.forgot-password-header .forgot-password-subtitle {
  font-size: 1rem;
  opacity: 0.9;
}

.forgot-password-body {
  padding: 1.5rem;
}
@media (max-width: 480px) {
  .forgot-password-body {
    padding: 1rem;
  }
}
.forgot-password-body .validation-summary {
  margin-bottom: 1rem;
  padding: 0.5rem;
  border-radius: 6px;
  background-color: rgba(244, 67, 54, 0.1);
  border-left: 4px solid #F44336;
}
.forgot-password-body .validation-summary ul {
  margin: 0;
  padding-left: 1rem;
}
.forgot-password-body .validation-summary ul li {
  color: #F44336;
}
.forgot-password-body .form-group {
  position: relative;
  margin-bottom: 1.5rem;
}
.forgot-password-body .form-group .form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", sans-serif;
  font-size: 1rem;
  transition-property: border-color, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  background-color: #ffffff;
}
.forgot-password-body .form-group .form-control:focus {
  outline: none;
  border-color: #1a56db;
  box-shadow: 0 0 0 2px rgba(26, 86, 219, 0.2);
}
.forgot-password-body .form-group .form-control::placeholder {
  color: rgba(75, 85, 99, 0.5);
}
.forgot-password-body .form-group .form-label {
  position: absolute;
  top: 0;
  left: 0.5rem;
  padding: 0 0.25rem;
  background-color: #ffffff;
  transform: translateY(-50%);
  font-size: 0.875rem;
  color: #1a56db;
  pointer-events: none;
}
.forgot-password-body .form-group .field-validation-error {
  display: block;
  margin-top: 0.25rem;
  color: #F44336;
  font-size: 0.875rem;
}
.forgot-password-body .forgot-password-button {
  width: 100%;
  padding: 1rem;
  background-color: #1a56db;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition-property: background-color, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
.forgot-password-body .forgot-password-button:hover {
  background-color: #2964e6;
  transform: translateY(-2px);
}
.forgot-password-body .forgot-password-button:active {
  transform: translateY(0);
}

.forgot-password-footer {
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #e5e7eb;
  background-color: #fafafa;
}
.forgot-password-footer .footer-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.forgot-password-footer .footer-links a {
  color: #1a56db;
  text-decoration: none;
  font-size: 0.875rem;
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
.forgot-password-footer .footer-links a:hover {
  color: #4074e8;
  text-decoration: underline;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.forgot-password-card {
  animation: fadeInUp 0.5s ease-out forwards;
}

body.dark-mode .forgot-password-card {
  background-color: #1a1f2e;
}
body.dark-mode .forgot-password-header {
  background-color: #094fc2;
}
body.dark-mode .forgot-password-body .form-group .form-control {
  background-color: #11141e;
  border-color: #2d3548;
  color: #f3f4f6;
}
body.dark-mode .forgot-password-body .form-group .form-control:focus {
  box-shadow: 0 0 0 2px rgba(18, 59, 151, 0.2);
}
body.dark-mode .forgot-password-body .form-group .form-control::placeholder {
  color: rgba(243, 244, 246, 0.5);
}
body.dark-mode .forgot-password-body .form-group .form-label {
  background-color: #11141e;
  color: #5785eb;
}
body.dark-mode .forgot-password-body .forgot-password-button {
  background-color: #174dc4;
}
body.dark-mode .forgot-password-body .forgot-password-button:hover {
  background-color: #1a56db;
}
body.dark-mode .forgot-password-footer {
  border-top-color: #2d3548;
  background-color: #11141e;
}
body.dark-mode .forgot-password-footer .footer-links a {
  color: #5785eb;
}
body.dark-mode .forgot-password-footer .footer-links a:hover {
  color: #84a6f0;
}

/*# sourceMappingURL=identity-forgot-password.css.map */
