@charset "UTF-8";
/* Portal pages use the same visual language as the public site but with denser dashboard cards. */
.portal-shell { min-height: 100vh; background: #0b0e12; color: white; padding: 120px 0 70px; }
.portal-panel { background: #151a20; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; padding: 32px; box-shadow: 0 26px 70px rgba(0,0,0,.38); }
.portal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 24px; }
.portal-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 20px; }
.login-box { max-width: 480px; margin: 0 auto; }
@media (max-width: 900px) { .portal-grid { grid-template-columns: 1fr; } }
