/* BASE STYLES */
/* Main container with background image */
.login-container {
  background-image: url('/img/background.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* LOGIN BOX STYLING */
/* Main login form container */
.login-box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  max-width: 400px;
  width: 100%;
}

/* Login form title */
.login-title {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  font-size: 24px;
}

/* FORM ELEMENTS STYLING */
/* Form group container */
.form-group {
  margin-bottom: 20px;
}

/* Input field styling */
.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

/* Input field focus state */
.form-group input:focus {
  border-color: #0066cc;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 102, 204, 0.2);
}

/* BUTTON STYLING */
/* Login button */
.login-button {
  width: 100%;
  padding: 12px;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Login button hover state */
.login-button:hover {
  background-color: #0052a3;
}

/* MESSAGE STYLING */
/* Base message container */
.message {
  margin-top: 15px;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}

/* Error message styling */
.error-message {
  background-color: #ffe6e6;
  color: #cc0000;
  border: 1px solid #ffcccc;
}

/* Success message styling */
.success-message {
  background-color: #e6ffe6;
  color: #006600;
  border: 1px solid #ccffcc;
}

/* CREATE ACCOUNT LINK */
/* Create account section */
.create-account {
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
}

/* Create account link */
.create-account a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

/* Create account link hover state */
.create-account a:hover {
  text-decoration: underline;
}

/* ACCESSIBILITY STYLES */
/* Large text support for better readability */
.large-text .login-title {
  font-size: 32px;
}

.large-text .form-group input {
  font-size: 20px;
  padding: 14px;
}

.large-text .login-button {
  font-size: 20px;
  padding: 14px;
}

.large-text .create-account {
  font-size: 20px;
}

