/* public_html/assets/css/login.css */

:root{
  --bg: #0b1220;
  --card: #111a2e;
  --text: #e5e7eb;
  --muted: rgba(229,231,235,.70);
  --border: rgba(255,255,255,.10);
  --border2: rgba(255,255,255,.12);
  --primary: #4f46e5;
  --danger: #ef4444;
  --ok: #22c55e;
}

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

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 20% 15%, rgba(79,70,229,.25), transparent 55%),
              radial-gradient(900px 600px at 80% 75%, rgba(34,197,94,.10), transparent 55%),
              var(--bg);
  color: var(--text);
}

.lp-wrap{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 24px;
}

.lp-card{
  width: 380px;
  max-width: 95vw;
  background: rgba(17,26,46,.95);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 14px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
}

.lp-brand{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 16px;
}

.lp-logo{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  background: rgba(79,70,229,.18);
  border: 1px solid rgba(79,70,229,.35);
}

.lp-title{
  font-weight: 800;
  letter-spacing: .3px;
  font-size: 18px;
  line-height: 1.1;
}

.lp-subtitle{
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.lp-alert{
  padding: 10px 12px;
  border-radius: 12px;
  margin: 10px 0;
  font-size: 13px;
}

.lp-alert--error{
  background: rgba(239,68,68,.15);
  border: 1px solid rgba(239,68,68,.38);
}

.lp-alert--ok{
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.30);
}

.lp-form{
  margin-top: 10px;
}

.lp-label{
  display:block;
  margin: 12px 0 6px;
  font-size: 12px;
  color: rgba(229,231,235,.82);
}

.lp-input{
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--border2);
  background: rgba(11,18,32,.95);
  color: var(--text);
  outline: none;
}

.lp-input:focus{
  border-color: rgba(99,102,241,.85);
}

.lp-btn{
  width: 100%;
  margin-top: 14px;
  padding: 11px 12px;
  border-radius: 12px;
  border: 0;
  background: var(--primary);
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.lp-btn:hover{
  filter: brightness(1.05);
}

.lp-foot{
  margin-top: 14px;
  display:flex;
  justify-content:center;
}

.lp-muted{
  font-size: 12px;
  color: var(--muted);
}