/* ============================================================
   login.css
   ============================================================ */

.login-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111827 0%, #1f2937 60%, #064e3b 100%);
}

.login-wrapper {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

.login-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.login-logo {
  text-align: center;
  margin-bottom: 24px;
}
.login-logo img { height: 52px; margin-bottom: 8px; }
.login-logo h1 { font-size: 26px; color: #111827; }
.login-logo h1 span { color: var(--green-wa); }
.login-logo p { color: var(--text-muted); font-size: 13px; margin-top: 3px; }

/* Tabs login */
.login-tabs {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.login-tabs .tab-btn {
  flex: 1;
  padding: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg);
  transition: background .15s, color .15s;
}
.login-tabs .tab-btn.active {
  background: var(--green-wa);
  color: #fff;
}

/* Form */
.login-form .form-group { margin-bottom: 15px; }
.login-form label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 5px; }
.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"],
.login-form input[type="number"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  outline: none;
  transition: border-color .15s;
}
.login-form input:focus { border-color: var(--green-wa); }

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px;
  background: var(--green-wa);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  margin-top: 8px;
  transition: background .15s;
}
.btn-login:hover { background: var(--green-dark); }

.btn-google {
  background: #fff;
  color: #111827;
  border: 1px solid #d1d5db;
  text-decoration: none;
  margin-top: 10px;
}
.btn-google:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
}
