/* Modern minimal auth UI */
:root { --brand:#4292c6; --bg:#0f172a; --card-bg:#ffffff; --muted:#6b7280; }

.auth-page { min-height: 100vh; background: linear-gradient(135deg,#f8fafc,#eef2ff); display:flex; flex-direction:column; align-items:center; justify-content:center; }
.auth-page .gold-top-hed, .auth-page .gold-menu-area, .auth-page .gold-footer, .auth-page .flot-what { display:none !important; }

.auth-wrapper { width:100%; padding: 24px; }
.auth-card { max-width: 420px; margin: 0 auto; background: var(--card-bg); border-radius: 14px; box-shadow: 0 10px 30px rgba(2,6,23,.08); padding: 28px; }
.auth-card .brand { display:flex; align-items:center; gap:10px; margin-bottom: 18px; }
.auth-card .brand img { height: 32px; width: auto; }
.auth-card h2 { font-size: 24px; margin: 0 0 6px; color:#0f172a; }
.auth-card p.sub { margin:0 0 16px; color: var(--muted); font-size: 14px; }

.auth-card form { display:flex; flex-direction:column; gap:12px; }
.auth-card label { font-size: 13px; color:#0f172a; }
.auth-input { width:100%; padding: 12px 14px; border: 1px solid #e5e7eb; border-radius: 10px; background:#fff; font-size:14px; transition: border-color .2s, box-shadow .2s; }
.auth-input:focus { outline:none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(66,146,198,.15); }

.auth-btn { display:inline-block; width:100%; padding: 12px 14px; border-radius: 10px; border: none; background: var(--brand); color:#fff; font-weight:600; cursor:pointer; transition: transform .08s ease, box-shadow .2s ease, background .2s ease; }
.auth-btn:hover { background:#3a84b6; box-shadow: 0 8px 20px rgba(66,146,198,.25); }
.auth-btn:active { transform: translateY(1px); }

.auth-actions { display:flex; justify-content:space-between; align-items:center; font-size:13px; }
.auth-actions a { color: var(--brand); text-decoration:none; }
.auth-actions a:hover { text-decoration:underline; }

.auth-foot { margin-top: 14px; font-size: 13px; color: var(--muted); text-align:center; }
.auth-foot a { color: var(--brand); text-decoration:none; }
.auth-foot a:hover { text-decoration:underline; }

@media (max-width:480px){ .auth-card { padding:22px; border-radius:12px; } .auth-card h2{ font-size:22px; } }