/* Forgot Password Page Design */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top left, #0b1221, #06111d);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.form-box {
  background-color: #fff;
  width: 360px;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  text-align: center;
  box-sizing: border-box;
}

.logo {
  width: 70px;
  margin-bottom: 10px;
}

h2 {
  margin: 10px 0 8px;
  color: #0b1221;
  font-size: 22px;
  font-weight: 700;
}

.sub-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

.input-group {
  width: 100%;
  box-sizing: border-box;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  background-color: #f5f7fb;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.input-group input:focus {
  outline: none;
  border-color: #00aaff;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 170, 255, 0.3);
}

.btn {
  width: 100%;
  padding: 12px;
  background-color: #00aaff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  box-sizing: border-box;
}

.btn:hover {
  background-color: #008fcc;
}

.back-login {
  margin-top: 20px;
}

.back-login a {
  color: #007acc;
  text-decoration: none;
  font-weight: 500;
}

.back-login a:hover {
  text-decoration: underline;
}
