/* ═══════════════════════════════════════════════════════════
   PANEL WAENGINE — Login Page
═══════════════════════════════════════════════════════════ */

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

html, body {
  height: 100%;
  background: #111b21;
  color: #e9edef;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
}

.login-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  gap: 20px;
}

.login-card {
  width: 100%;
  max-width: 380px;
  background: #202c33;
  border-radius: 16px;
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.login-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 16px;
}

.login-title {
  font-size: 20px;
  font-weight: 700;
  color: #e9edef;
  margin-bottom: 4px;
  text-align: center;
}

.login-subtitle {
  font-size: 13px;
  color: #8696a0;
  margin-bottom: 28px;
  text-align: center;
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label {
  font-size: 13px;
  color: #8696a0;
  font-weight: 500;
}

.field-input {
  background: #2a3942;
  border: 1px solid #374045;
  border-radius: 8px;
  color: #e9edef;
  font-size: 15px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.field-input::placeholder { color: #54656f; }

.field-input:focus {
  border-color: #00a884;
}

.login-error {
  font-size: 13px;
  color: #ea4040;
  background: rgba(234, 64, 64, 0.1);
  border-radius: 8px;
  padding: 8px 12px;
  text-align: center;
}

.login-error.hidden { display: none; }

.btn-login {
  width: 100%;
  background: #00a884;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  border: none;
  transition: background 0.15s;
  margin-top: 4px;
}

.btn-login:hover:not(:disabled) { background: #06cf9c; }
.btn-login:disabled { opacity: 0.6; cursor: not-allowed; }

.login-credit {
  font-size: 12px;
  color: #54656f;
  text-align: center;
}

.login-credit a {
  color: #00a884;
  text-decoration: none;
}
