body {
  background: url('../Image/login_background.png') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
  height:100%;
  font-family: 'Inter', sans-serif;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.forgot-wrapper {
  margin-top: 72px; /* match .main-header's height */
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.forgot-container {
  background: rgba(255, 255, 255, 1);
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  padding: 25px 75px;
  width: 480px;
  color: black;
  text-align: center;
}

.forgot-icon {
  width: 100px;
  margin-top: 10px;
}

h2 {
  margin-bottom: 10px;
  font-weight: 600;
}

.forgot-wrapper p {
  font-size: 14px;
  color: #333;
  margin-bottom: 30px;
}

.form-group {
  text-align: left;
  margin-bottom: 20px;
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 500;
}

input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 30px;
  outline: none;
}

button {
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  font-size: 15px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #0044ff;
}

.back-link {
  font-size: 12px;
  color: #333;
  margin-top: 16px;
  text-decoration: none;
  display: block;
}

.msg {
  margin-top: 10px;
  font-size: 14px;
}
