/* [project]/app/forgot-password/forgot-password.css [app-client] (css) */
.forgot-password-container {
  background: radial-gradient(circle at 10% 20%, #1e7e7e0d 0%, #0000 20%), radial-gradient(circle at 90% 80%, #6bb39b0d 0%, #0000 20%), linear-gradient(135deg, #f6fbfb 0%, #eef7f7 40%, #e8f3f3 100%);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, sans-serif;
  display: flex;
  position: relative;
  overflow: hidden;
}

.forgot-password-card {
  -webkit-backdrop-filter: blur(20px);
  z-index: 20;
  background: #ffffffd9;
  border: 1px solid #1e7e7e26;
  border-radius: 24px;
  width: 100%;
  max-width: 28rem;
  padding: 2.5rem;
  animation: .6s fadeInUp;
  position: relative;
  box-shadow: 0 20px 40px -10px #1e7e7e33;
}

.forgot-password-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.back-link {
  color: var(--text-secondary, #5f7a7a);
  border-radius: 8px;
  align-items: center;
  gap: .5rem;
  padding: .5rem;
  font-size: .8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: 0;
  left: -14px;
}

.back-link:hover {
  color: var(--primary, #1e7e7e);
  background: #1e7e7e0d;
  transform: translateX(-3px);
}

.back-link svg {
  width: 1rem;
  height: 1rem;
}

.logo-container {
  background: linear-gradient(135deg, #1e7e7e 0%, #3a9b9b 100%);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  box-shadow: 0 10px 20px -5px #1e7e7e4d;
}

.logo-container svg {
  color: #fff;
  width: 35px;
  height: 35px;
}

.forgot-password-header h1 {
  color: #0f2a2a;
  letter-spacing: -.02em;
  margin-bottom: .5rem;
  font-size: 2rem;
  font-weight: 700;
}

.forgot-password-header p {
  color: #5f7a7a;
  max-width: 350px;
  margin: 0 auto;
  font-size: .95rem;
  line-height: 1.5;
}

.forgot-password-form {
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
}

.form-group {
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.form-group label {
  color: #0f2a2a;
  font-size: .9rem;
  font-weight: 600;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  color: #8aa5a5;
  z-index: 1;
  justify-content: center;
  align-items: center;
  transition: color .2s;
  display: flex;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

.input-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.forgot-password-input {
  color: #0f2a2a;
  background: #fffffff2;
  border: 2px solid #1e7e7e26;
  border-radius: 12px;
  width: 100%;
  padding: .875rem 1rem .875rem 2.5rem;
  font-size: .95rem;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 2px 4px #00000005;
}

.forgot-password-input:focus {
  border-color: #1e7e7e;
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px #1e7e7e26;
}

.forgot-password-input:focus + .input-icon {
  color: #1e7e7e;
}

.forgot-password-input::placeholder {
  color: #8aa5a5;
}

.forgot-password-input:disabled {
  cursor: not-allowed;
  background: #1e7e7e0d;
}

.error-message, .success-message {
  border-radius: 12px;
  align-items: center;
  gap: .75rem;
  padding: .875rem 1rem;
  animation: .3s slideIn;
  display: flex;
}

.error-message {
  color: #e86b6b;
  background: #e86b6b1a;
  border: 1px solid #e86b6b33;
}

.success-message {
  color: #4caf93;
  background: #4caf931a;
  border: 1px solid #4caf9333;
}

.error-message svg, .success-message svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}

.error-message span, .success-message span {
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.4;
}

.submit-button {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #1e7e7e 0%, #3a9b9b 100%);
  border: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .875rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.submit-button:before {
  content: "";
  background: #fff3;
  border-radius: 50%;
  width: 0;
  height: 0;
  transition: width .6s, height .6s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.submit-button:hover:not(:disabled):before {
  width: 400px;
  height: 400px;
}

.submit-button:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px #1e7e7e4d;
}

.submit-button:active:not(:disabled) {
  transform: translateY(0);
}

.submit-button:disabled {
  opacity: .6;
  cursor: not-allowed;
  background: linear-gradient(135deg, #8aa5a5, #5f7a7a);
}

.spinner {
  border: 2px solid #ffffff4d;
  border-top-color: #fff;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  animation: .8s linear infinite spin;
  display: inline-block;
}

.forgot-password-footer {
  text-align: center;
  border-top: 2px solid #1e7e7e1a;
  padding-top: 1.5rem;
}

.forgot-password-footer p {
  color: #5f7a7a;
  margin: 0;
  font-size: .9rem;
}

.login-link {
  color: #1e7e7e;
  border-radius: 30px;
  padding: .25rem .5rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  position: relative;
}

.login-link:after {
  content: "";
  background: #1e7e7e;
  width: 0;
  height: 2px;
  transition: width .2s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.login-link:hover:after {
  width: 80%;
}

.login-link:hover {
  color: #155e5e;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px) {
  .forgot-password-card {
    padding: 1.5rem;
  }

  .back-link {
    margin-bottom: 1rem;
    display: inline-flex;
    position: static;
  }

  .forgot-password-header h1 {
    font-size: 1.75rem;
  }

  .logo-container {
    width: 60px;
    height: 60px;
  }

  .logo-container svg {
    width: 30px;
    height: 30px;
  }
}

.medical-bg-elements {
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.medical-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 10 L30 50 M10 30 L50 30' stroke='%231e7e7e' stroke-width='1' opacity='0.03' fill='none'/%3E%3C/svg%3E");
  width: 100%;
  height: 100%;
  animation: 30s linear infinite patternMove;
  position: absolute;
  top: 0;
  left: 0;
}

.ecg-line {
  opacity: .08;
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: 15%;
  left: 0;
}

.ecg-line svg {
  width: 100%;
  height: 100%;
  animation: 20s linear infinite moveECG;
}

.ecg-path {
  stroke: #1e7e7e;
  stroke-width: 2px;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000px;
  animation: 8s ease-in-out infinite drawECG;
}

@keyframes drawECG {
  0% {
    stroke-dashoffset: 1000px;
  }

  50% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -1000px;
  }
}

@keyframes moveECG {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes patternMove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 60px 60px;
  }
}

/*# sourceMappingURL=app_forgot-password_forgot-password_b4dceedd.css.map*/