/* views/starterPages/login.css */
/* Default (Light Mode) Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
.container {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
}
h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}
label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}
input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
button {
  width: 100%;
  padding: 10px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
button:hover {
  background: #0056b3;
}
.form-footer {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}
.form-footer a {
  color: #007bff;
  text-decoration: none;
}
.form-footer a:hover {
  text-decoration: underline;
}

/* Dark Mode Styles */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #121212;
  }
  .container {
    background: #333;
    color: #fff;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
  }
  h2 {
    color: #fff;
  }
  label {
    color: #ccc;
  }
  input {
    background: #555;
    color: #fff;
    border: 1px solid #444;
  }
  button {
    background: #007bff;
  }
  button:hover {
    background: #0056b3;
  }
  .form-footer a {
    color: #007bff;
  }
  .form-footer a:hover {
    text-decoration: underline;
  }
}
