/* login.css */

/* Form container styling */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 20px;
}

/* Form styling */
.login-form {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

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

/* Form fields */
.login-form table {
  width: 100%;
  margin-bottom: 20px;
}

.login-form td {
  padding: 8px 0;
}

.login-form label {
  font-weight: 500;
  color: #555;
}

.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

/* Submit button */
.login-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  margin-top: 10px;
}

.login-button:hover {
  background-color: #0069d9;
}

/* Error messages */
.error-message {
  color: #dc3545;
  background-color: #f8d7da;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* Password reset link */
.password-reset {
  text-align: center;
  margin-top: 15px;
}

.password-reset a {
  color: #007bff;
  text-decoration: none;
}

.password-reset a:hover {
  text-decoration: underline;
}
