@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');

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

body {
  display: flex;
  height: 100vh;
  background: linear-gradient(135deg, #FAE3D9, #BBDED6);
  color: #333;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

#forgotPassword {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 3rem 4rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-sizing: border-box;
}

#forgotPassword h1 {
  font-size: 2.5rem;
  color: #61C0BF;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
}

#forgotPassword p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  word-wrap: break-word;
}

.input-container {
  margin-bottom: 1.5rem;
  text-align: left;
}

.input-container label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 600;
}

.input-container input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 1rem;
  background-color: #fff;
  font-size: 1rem;
  transition: border 0.3s ease;
  box-sizing: border-box;
}

.input-container input:focus {
  border-color: #FFB6B9;
  outline: none;
}

button {
  width: 100%;
  padding: 0.8rem 1.5rem;
  background-color: #FFB6B9;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

button:hover {
  background-color: #FAD4C0;
  color: #333;
}

#forgotPassword form a {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #61C0BF;
  text-decoration: none;
  font-weight: 600;
  transition: text-decoration 0.3s ease;
  word-wrap: break-word;
}

#forgotPassword form a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  body {
    padding: 1rem;
  }

  #forgotPassword {
    padding: 2rem;
    width: 100%;
    max-width: none;
    border-radius: 1rem;
  }

  #forgotPassword h1 {
    font-size: 2rem;
  }

  button {
    font-size: 1rem;
  }
}
