/* Extracted from admin/login.php */

body {
  font-family: system-ui, Arial, sans-serif;
  background: #5B8D6A;
  color: #e9eef3;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.login-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #0d2130;
  border: 1px solid #183145;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  gap: 20px;
}

.login-form {
  display: flex;
  flex-direction: column;
  width: 260px;
}

.login-form h1 {
  margin-top: 0;
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
}

input[type="text"], input[type="password"] {
  padding: 10px;
  margin: 6px 0;
  border-radius: 8px;
  border: 1px solid #2e4a5f;
  background: #13293d;
  color: #fff;
}

button {
  margin-top: 8px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: #5B8D6A;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background: #6aa87d;
}

.home-btn {
  display: block;
  text-align: center;
  margin-top: 8px;
  padding: 10px;
  border-radius: 8px;
  background: #354063;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.home-btn:hover {
  background: #3f4c7a;
}

.error {
  color: #ff7070;
  text-align: center;
  margin-top: 8px;
  line-height: 1.4;
}

.login-image img {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 600px) {
  .login-container {
    flex-direction: column;
    text-align: center;
  }
  .login-image img {
    max-width: 120px;
  }
}
