.login-page {
  background: linear-gradient(135deg, #1a3c2a 0%, #2d5a3f 50%, #1a3c2a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box {
  width: 400px;
  max-width: 95%;
}

.login-box-body {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  padding: 40px 35px 30px;
}

.login-logo {
  text-align: center;
  margin-bottom: 8px;
}

.login-logo img {
  width: 200px;
  height: auto;
}

.login-brand {
  font-size: 22px;
  font-weight: 700;
  color: #2d5a3f;
  margin: 6px 0 0;
}

.login-welcome {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin-bottom: 28px;
  font-weight: 400;
}

.login-box-body .form-group {
  margin-bottom: 18px;
  position: relative;
}

.login-box-body .input-group-addon {
  background: #f5f7fa;
  border-color: #dce1e8;
  color: #7a8a9a;
}

.login-box-body .form-control {
  border-color: #dce1e8;
  height: 44px;
  font-size: 14px;
  box-shadow: none;
}

.login-box-body .form-control:focus {
  border-color: #2d5a3f;
  box-shadow: 0 0 0 3px rgba(45, 90, 63, 0.1);
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #a0aec0;
  cursor: pointer;
  padding: 0;
  font-size: 16px;
  z-index: 5;
}

.password-toggle:hover {
  color: #2d5a3f;
}

.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.login-options label {
  font-size: 13px;
  color: #666;
  font-weight: 400;
  cursor: pointer;
  margin: 0;
}

.login-options label input[type="checkbox"] {
  margin-right: 5px;
  vertical-align: middle;
}

.forgot-password {
  font-size: 13px;
  color: #2d5a3f;
}

.forgot-password:hover {
  color: #1a3c2a;
  text-decoration: underline;
}

.btn-login {
  background: #2d5a3f;
  border: none;
  height: 44px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}

.btn-login:hover {
  background: #1a3c2a;
}

.btn-login:active {
  transform: scale(0.98);
}

.btn-login:disabled {
  background: #8aa89a;
  cursor: not-allowed;
}

.login-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #aab;
}

.login-footer a {
  color: #2d5a3f;
}
