/* === GENERAL PAGE STYLES === */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #f0f2f5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* === LOGIN BOX === */
.login-container {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  width: 360px;
  max-width: 90%;
}

.login-container h2 {
  text-align: center;
  color: #002f66;
  margin-bottom: 25px;
  font-size: 24px;
}

/* === LABELS AND INPUTS === */
label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.2s ease;
}

input:focus {
  border-color: #002f66;
  outline: none;
}

/* === BUTTON STYLING === */
button {
  width: 100%;
  padding: 12px;
  background-color: #002f66;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #004080;
}

/* === LOGIN MESSAGE === */
#login-message {
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
  color: #d8000c;
}

/* === SIGNUP LINK TEXT === */
.login-container p {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.login-container a {
  color: #007bff;
  text-decoration: none;
}

.login-container a:hover {
  text-decoration: underline;
}
