/* Page wrapper */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #f8f9fa;
  font-family: "Arial", sans-serif;
}

/* Box */
.login-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* Header */
.login-header {
  margin-bottom: 20px;
}
.login-logo {
  height: 50px;
  margin-bottom: 10px;
}
.login-header h2 {
  margin: 5px 0;
  font-size: 24px;
}
.login-subtitle {
  color: #666;
  font-size: 14px;
}

/* Error */
.login-error {
  background: #ffe5e5;
  color: #d9534f;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
}

/* Form */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-group {
  text-align: left;
}
.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}
.form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
}
.form-group input:focus {
  border-color: #28a745;
  box-shadow: 0 0 5px rgba(40,167,69,0.3);
}

/* Button */
.login-btn {
  padding: 12px;
  background: #28a745;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.login-btn:hover {
  background: #218838;
}
.login-btn:disabled {
  background: #94d3a2;
  cursor: not-allowed;
}

/* Footer */
.login-footer {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}
.login-footer a {
  color: #28a745;
  text-decoration: none;
  font-weight: bold;
}
.login-footer a:hover {
  text-decoration: underline;
}