* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(180deg, #600a5c, #190636);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.forgot-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.forgot-card {
  width: 100%;
  max-width: 430px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  text-align: center;
  color: white;
}

.icon-box {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #7e22ce);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.35);
}

.forgot-card h1 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #fff;
}

.forgot-card p {
  font-size: 15px;
  color: #e9d5ff;
  line-height: 1.5;
  margin-bottom: 28px;
}

form {
  display: flex;
  flex-direction: column;
  text-align: left;
}

form label {
  font-size: 14px;
  margin-bottom: 8px;
  color: #f3e8ff;
  font-weight: bold;
}

form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
  margin-bottom: 18px;
}

form input::placeholder {
  color: rgba(255,255,255,0.65);
}

form input:focus {
  border-color: #c084fc;
  box-shadow: 0 0 0 4px rgba(192, 132, 252, 0.18);
}

form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #9333ea, #7e22ce);
  color: white;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(147, 51, 234, 0.35);
}

.back-link {
  display: inline-block;
  margin-top: 22px;
  color: #d8b4fe;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.back-link:hover {
  color: white;
}

@media (max-width: 480px) {
  .forgot-card {
    padding: 30px 20px;
    border-radius: 18px;
  }

  .forgot-card h1 {
    font-size: 24px;
  }

  .forgot-card p {
    font-size: 14px;
  }
}