*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    font-family: 'inter', sans-serif;
}

.forgot-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, #585899, #100D2A);
}

/* logo */
.otp-logo {
  width: 18%;
  max-width: 195px;
  margin-bottom: 2rem;
  animation: fadeIn 0.4s ease-in-out;
}

    .forgot-card {
      background: #fff;
      border-radius: 16px;
      max-width: 500px;
      width: 100%;
      padding: 30px 26px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      text-align: center;
      animation: fadeIn 0.4s ease-in-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .forgot-logo {
      width: 60px;
      margin-bottom: 1rem;
    }

    .forgot-title {
      font-size: 24px;
      font-weight: bold;
      color: #1A202C;
      margin-bottom: 8px;
    }

    .forgot-desc {
      font-size: 14px;
      color: #4A5568;
      margin-bottom: 24px;
      line-height: 1.6;
    }

    form input[type="email"] {
      width: 100%;
      padding: 12px 16px;
      border-radius: 8px;
      border: 1.5px solid #CBD5E0;
      font-size: 15px;
      margin-bottom: 16px;
      outline: none;
      transition: border-color .2s;
    }

    form input[type="email"]:focus {
      border-color: #5A67D8;
    }

    form button {
      width: 100%;
      background-color: #5A67D8;
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 999px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.2s ease, transform 0.2s ease;
    }

    form button:hover {
      background-color: #4C51BF;
      transform: scale(1.01);
    }

    .back-link {
      margin-top: 1rem;
      display: inline-block;
      font-size: 14px;
      color: #5A67D8;
      text-decoration: none;
      transition: opacity 0.2s ease;
      border: 2px solid #5A67D8;
        padding: 10px 16px;
        width: 100%;
        border-radius: 100px;
    }

    .back-link:hover {
      opacity: 0.8;
    }

    .alert {
      padding: 10px 14px;
      border-radius: 8px;
      font-size: 14px;
      margin-bottom: 16px;
    }

    .alert-danger {
      background: #FED7D7;
      color: #C53030;
    }

    .alert-success {
      background: #C6F6D5;
      color: #2F855A;
    }

    .reminder-note {
      font-size: 13px;
      color: #718096;
      margin-top: 12px;
      line-height: 1.5;
    }
