body {
  margin: 0;
  padding: 0;
  background-image: url('../images/Mask Group.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: Arial, sans-serif;
  min-height: 100vh;
}

.forgot-container {
  max-width: 450px;
  margin: 80px auto;
  background-color: white;
  padding: 40px 45px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.logo-container {
  text-align: center;
  margin-bottom: 30px;
}

.logo-container img {
  max-width: 250px;
}

.login-heading {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}

.login-form {
  padding: 10px 15px;
  border: 1px solid #ddd;
  background: #DEEBFF;
  display: block;
  width: 100%;
  margin-bottom: 24px;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  border-radius: 5px;
  box-sizing: border-box;
}

.login-form:focus {
  border-color: #DF9926;
}

.form-group label {
  display: block;
  color: #333;
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 500;
}

.btm-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.fpw {
  color: #DF9926;
  text-decoration: none;
  font-size: 14px;
}

.fpw:hover {
  text-decoration: underline;
}

.login-btn {
  opacity: 1;
  width: 32px;
  height: 32px;
  display: block;
  background: url(../images/login_default.png) no-repeat center center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}