/* ─────────────────────────────────────────────────────────────────────────
   Gibit Tecnología — Login page stylesheet
   ───────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.bg-login {
  background-color: #0D1829;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(37, 99, 235, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(#1E293B 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 28px 28px;
}

.login-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 8px 16px rgba(0, 0, 0, 0.2);
}

.login-footer {
  background: #F9F8F5;
  border-top: 1px solid #EAE8E2;
}

.btn-login {
  width: 100%;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.30);
  transition: box-shadow 0.15s ease, transform 0.1s ease;
}
.btn-login:hover  { box-shadow: 0 6px 18px rgba(37, 99, 235, 0.42); }
.btn-login:active { transform: scale(0.99); }

input {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 14px;
}
input:focus {
  outline: none;
  border-color: #3B82F6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12) !important;
}
