body {
  background-image: url("../img/img_bg.jpg");
  background-size: cover;
  background-position: center;
}

.form {
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#form-login {
  width: 400px;
  padding: 40px;
  background: rgba(255, 240, 240, 0.75); /* pastel glass */
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(255, 160, 160, 0.4);
}

.form-heading {
  color: #6b3f3f;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}
.inputBox {
  display: flex;
  align-items: center;
  font-size: 20px;
}
.inputBox i {
  color: #ff7a7a;
  margin-right: 10px;
}
.eye {
  cursor: pointer;
}
.form-input {
  width: 100%;
  padding: 10px 0;
  margin: 15px 0;
  border: none;
  border-bottom: 2px solid #e6bcbc;
  background: transparent;
  outline: none;
  color: #8a4b4b;
  font-size: 16px;
}
.form-input::placeholder {
  color: #c99393;
}

.form-input:focus {
  border-bottom-color: #ff8f8f;
}
.links {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.links a {
  color: #000000;
  text-decoration: none;
  font-size: 18px;
}

.links a:hover {
  color: #5cc1ff;
  text-decoration: underline;
}

.form-submit {
  margin-top: 30px;
  width: 100%;
  padding: 12px;
  border: none;
  background: #ff8e8e;
  color: white;
  font-size: 20px;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.3s ease;
}

.form-submit:hover {
  background: #ff2525;
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  #form-login {
    width: 80%;
    padding: 20px;
  }
}
