/* Kenna Real Estate Group — Login Page */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: #1d2c35;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

.login-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.login-logo {
  max-width: 220px;
  margin-bottom: 32px;
}

.login-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.login-subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin-bottom: 32px;
}

.login-form { width: 100%; }

.login-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.login-input::placeholder {
  color: rgba(255,255,255,0.35);
}

.login-input:focus {
  border-color: #039ba9;
  box-shadow: 0 0 0 3px rgba(3,155,169,0.15);
}

.login-button {
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  background: #039ba9;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.login-button:hover {
  background: #02838f;
}

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

.login-error {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(239,159,39,0.1);
  border: 1px solid rgba(239,159,39,0.3);
  border-radius: 8px;
  color: #ef9f27;
  font-size: 13px;
  line-height: 1.4;
}

.login-footer {
  margin-top: 24px;
  color: rgba(255,255,255,0.25);
  font-size: 12px;
}
