.forgot-password-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 100px);
  padding: 2rem;
  background-color: #f8f9fa;
}

.forgot-password-card {
  width: 100%;
  max-width: 500px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 16px -4px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.forgot-password-card:hover {
  box-shadow: 0 20px 24px -4px rgba(0, 0, 0, 0.08), 0 8px 8px -4px rgba(0, 0, 0, 0.03);
}

.forgot-password-header {
  background: linear-gradient(135deg, #0d6efd, #364963);
  color: #ffffff;
  padding: 2rem 1.5rem;
  text-align: center;
}
.forgot-password-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.forgot-password-subtitle {
  font-size: 1.125rem;
  opacity: 0.8;
  margin-bottom: 0;
}

.forgot-password-icon {
  width: 64px;
  height: 64px;
  fill: #ffffff;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.forgot-password-content {
  padding: 2rem 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.25rem;
  color: #444444;
  font-weight: 500;
  font-size: 0.875rem;
}

.form-control {
  width: 100%;
  height: 48px;
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid rgba(33, 37, 41, 0.15);
  border-radius: 10px;
  background-color: #ffffff;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.form-control:focus {
  outline: none;
  border-color: #0d6efd;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}
.form-control::placeholder {
  color: rgba(68, 68, 68, 0.5);
}

.text-danger {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.button-container {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  font-size: 1rem;
  height: 44px;
}

.btn-primary {
  background-color: #0d6efd;
  color: #ffffff;
  border-color: #0d6efd;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #0262ef;
  border-color: #0262ef;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.btn-primary:active {
  background-color: #0257d5;
  border-color: #0257d5;
  box-shadow: none;
}

.reset-btn {
  width: 100%;
}

.btn-link {
  font-weight: 500;
  color: #0d6efd;
  background-color: transparent;
  border: none;
  padding: 0.5rem 0;
  text-align: center;
}
.btn-link:hover {
  color: #0257d5;
  text-decoration: underline;
}

.back-to-login {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .forgot-password-card {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .forgot-password-container {
    padding: 1rem;
  }

  .forgot-password-header {
    padding: 1.5rem 1rem;
  }

  .forgot-password-content {
    padding: 1.5rem 1rem;
  }
}
.confirmation-message {
  text-align: center;
  margin-bottom: 2rem;
}
.confirmation-message p {
  font-size: 1.125rem;
  color: #444444;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.email-sent-illustration {
  margin: 2rem auto;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.email-sent-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 6px rgba(13, 110, 253, 0.3));
}

.additional-info {
  font-size: 0.875rem !important;
  color: #6c757d !important;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 10px;
  margin-top: 1.5rem !important;
}

.forgot-password-confirmation .btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.forgot-password-confirmation .btn-primary:hover {
  background-color: #0262ef;
}

/*# sourceMappingURL=area_forgotpassword.css.map */
