
* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #b1e4ec;
  margin: 0;
  padding-top: 0;
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 10px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.form-container {
  max-width: 500px;
  margin: 70px auto 20px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border: 1px solid #ccc;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  font-size: 28px;
}

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

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  outline: none;
  transition: border-color 0.3s;
  font-size: 16px;
}

input:focus {
  border-color: #5c6bc0;
}

.btn-submit {
  background-color: rgb(10, 136, 221);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.btn-submit:hover {
  background-color: rgb(53, 13, 233);
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 40px;
}

.toggle-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
}

.form-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.form-footer a {
  color: #5c6bc0;
  text-decoration: none;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* 📱 Responsive Design */
@media (max-width: 600px) {
  .form-container {
    margin: 20px;
    padding: 30px 20px;
  }

  h2 {
    font-size: 22px;
  }

  input[type="email"],
  input[type="password"] {
    padding: 10px;
    font-size: 14px;
  }

  .btn-submit {
    font-size: 14px;
    padding: 10px 20px;
  }
}
