/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #2c3e50;
}
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background-image: url(assets/Login.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    filter: blur(2px); 
}
.login-container {
  background: #fafbfc90;
  padding: 40px 30px;
  border-radius: 14px;
  width: 30%;
  box-shadow: 2px 12px 25px rgba(0,0,0,0.15);
  text-align: center;
}
.login-container h2 {
  margin-bottom: 25px;
  font-weight: 700;
  color: #2b455f;
  letter-spacing: 1.4px;
}
label {
  display: block;
  text-align: left;
  margin-bottom: 6px;
  font-weight: 600;
  color: #555;
  font-size: 0.95rem;
}
input[type="email"],
input[type="password"],
select {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 18px;
  border: 1.8px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
input[type="email"]:focus,
input[type="password"]:focus,
select:focus {
  border-color: #27ae60;
  outline: none;
}
.toggle-password {
  text-align: left;
  margin-bottom: 20px;
}
.toggle-password input[type="checkbox"] {
  margin-right: 6px;
  vertical-align: middle;
  cursor: pointer;
}
button {
  width: 100%;
  padding: 13px 0;
  background: #27ae60;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  letter-spacing: 1.1px;
  transition: background 0.3s ease;
  user-select: none;
}
button:hover {
  background: #219150;
}
.error-message {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-bottom: 15px;
  height: 18px;
  text-align: left;
}
