/* General resets and box-sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and background */
body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to bottom right, #f2f4f6, #067ebf, #f2f4f6);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

/* Login Form Container */
#login-form {
  background: #ffffff;
  width: 100%;
  max-width: 400px;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

#login-form h1 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

#login-form label {
  font-size: 1rem;
  color: #666;
  display: block;
  margin-bottom: 8px;
}

#login-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

button {
  background:#067ebf;
  border: none;
  border-radius: 8px;
  padding: 14px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

button:hover {
  background: #21509b;
}

/* Submit button specific styles */
.submit {
  background: #067ebf;
  border: none;
  border-radius: 8px;
  padding: 14px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

.submit:hover {
  background: #055a8c;
}


/* Close Icon */
.close-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.close-icon:hover {
  color: #2575fc;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  #login-form {
    width: 90%;
  }

  #login-form h1 {
    font-size: 1.5rem;
  }
}
