/* ============================================================
   MZE SSO Test — Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue:      #1a56db;
    --blue-dark: #1e3a8a;
    --green:     #16a34a;
    --red:       #dc2626;
    --gray-50:   #f9fafb;
    --gray-100:  #f3f4f6;
    --gray-200:  #e5e7eb;
    --gray-600:  #4b5563;
    --gray-800:  #1f2937;
    --radius:    8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Header ---- */
.site-header {
    background: var(--blue-dark);
    color: white;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.logo { color: white; text-decoration: none; font-size: 1.25rem; font-weight: 700; }
.logo span { opacity: .65; font-weight: 400; }

nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
nav a { color: rgba(255,255,255,.85); text-decoration: none; padding: 6px 12px; border-radius: var(--radius); font-size: .9rem; transition: background .15s; }
nav a:hover, nav a.active { background: rgba(255,255,255,.15); color: white; }

.btn-nav { border-radius: 20px; font-weight: 600; font-size: .85rem; }
.btn-login  { background: var(--blue);  color: white !important; }
.btn-login:hover  { background: #1d4ed8 !important; }
.btn-logout { background: rgba(255,255,255,.15); }

/* ---- User Bar ---- */
.user-bar {
    background: #dbeafe;
    border-bottom: 1px solid #bfdbfe;
    padding: 8px 0;
    font-size: .85rem;
    color: #1e40af;
}

/* ---- Main ---- */
main { padding: 40px 20px; }

/* ---- Cards ---- */
.card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.card h2 { margin-bottom: 12px; font-size: 1.3rem; }
.card p  { color: var(--gray-600); margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }

/* ---- Hero ---- */
.hero {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: white;
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
    margin-bottom: 32px;
}
.hero h1 { font-size: 2rem; margin-bottom: 12px; }
.hero p  { opacity: .85; font-size: 1.1rem; margin-bottom: 24px; }

/* ---- Badges ---- */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.badge-public   { background: #dcfce7; color: var(--green); }
.badge-locked   { background: #fee2e2; color: var(--red); }
.badge-unlocked { background: #dbeafe; color: var(--blue); }

/* ---- Alert ---- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: .9rem;
}
.alert-info    { background: #dbeafe; border: 1px solid #bfdbfe; color: #1e40af; }
.alert-success { background: #dcfce7; border: 1px solid #bbf7d0; color: #15803d; }
.alert-error   { background: #fee2e2; border: 1px solid #fecaca; color: #991b1b; }
.alert-warning { background: #fef9c3; border: 1px solid #fde047; color: #854d0e; }

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: opacity .15s;
}
.btn:hover { opacity: .85; }
.btn-primary { background: var(--blue);  color: white; }
.btn-success { background: var(--green); color: white; }
.btn-danger  { background: var(--red);   color: white; }
.btn-outline { background: transparent; border: 2px solid var(--blue); color: var(--blue); }

/* ---- Grid ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---- Data Table ---- */
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.data-table th { text-align: left; padding: 10px 14px; background: var(--gray-100); color: var(--gray-600); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.data-table td { padding: 12px 14px; border-top: 1px solid var(--gray-200); }
.data-table tr:hover td { background: var(--gray-50); }

/* ---- Lock Icon ---- */
.lock-hint {
    text-align: center;
    padding: 48px 24px;
    color: var(--gray-600);
}
.lock-hint .icon { font-size: 3rem; margin-bottom: 16px; }
.lock-hint h2 { margin-bottom: 10px; }

/* ---- Login Form ---- */
.login-form { max-width: 480px; margin: 0 auto; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: .9rem; }
.form-group input[type=text], .form-group input[type=password], .form-group textarea {
    width: 100%; padding: 10px 14px; border: 1px solid var(--gray-200);
    border-radius: var(--radius); font-size: .95rem;
}
.form-group textarea { font-family: monospace; font-size: .8rem; resize: vertical; }

/* ---- Footer ---- */
.site-footer {
    margin-top: 60px;
    border-top: 1px solid var(--gray-200);
    padding: 20px 0;
    text-align: center;
    color: var(--gray-600);
    font-size: .85rem;
}
.site-footer a { color: var(--blue); text-decoration: none; }
/* ============================================================
   MZE SSO Test — Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue:      #1a56db;
    --blue-dark: #1e3a8a;
    --green:     #16a34a;
    --red:       #dc2626;
    --gray-50:   #f9fafb;
    --gray-100:  #f3f4f6;
    --gray-200:  #e5e7eb;
    --gray-600:  #4b5563;
    --gray-800:  #1f2937;
    --radius:    8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Header ---- */
.site-header {
    background: var(--blue-dark);
    color: white;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.logo { color: white; text-decoration: none; font-size: 1.25rem; font-weight: 700; }
.logo span { opacity: .65; font-weight: 400; }

nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
nav a { color: rgba(255,255,255,.85); text-decoration: none; padding: 6px 12px; border-radius: var(--radius); font-size: .9rem; transition: background .15s; }
nav a:hover, nav a.active { background: rgba(255,255,255,.15); color: white; }

.btn-nav { border-radius: 20px; font-weight: 600; font-size: .85rem; }
.btn-login  { background: var(--blue);  color: white !important; }
.btn-login:hover  { background: #1d4ed8 !important; }
.btn-logout { background: rgba(255,255,255,.15); }

/* ---- User Bar ---- */
.user-bar {
    background: #dbeafe;
    border-bottom: 1px solid #bfdbfe;
    padding: 8px 0;
    font-size: .85rem;
    color: #1e40af;
}

/* ---- Main ---- */
main { padding: 40px 20px; }

/* ---- Cards ---- */
.card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.card h2 { margin-bottom: 12px; font-size: 1.3rem; }
.card p  { color: var(--gray-600); margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }

/* ---- Hero ---- */
.hero {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: white;
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
    margin-bottom: 32px;
}
.hero h1 { font-size: 2rem; margin-bottom: 12px; }
.hero p  { opacity: .85; font-size: 1.1rem; margin-bottom: 24px; }

/* ---- Badges ---- */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.badge-public   { background: #dcfce7; color: var(--green); }
.badge-locked   { background: #fee2e2; color: var(--red); }
.badge-unlocked { background: #dbeafe; color: var(--blue); }

/* ---- Alert ---- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: .9rem;
}
.alert-info    { background: #dbeafe; border: 1px solid #bfdbfe; color: #1e40af; }
.alert-success { background: #dcfce7; border: 1px solid #bbf7d0; color: #15803d; }
.alert-error   { background: #fee2e2; border: 1px solid #fecaca; color: #991b1b; }
.alert-warning { background: #fef9c3; border: 1px solid #fde047; color: #854d0e; }

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: opacity .15s;
}
.btn:hover { opacity: .85; }
.btn-primary { background: var(--blue);  color: white; }
.btn-success { background: var(--green); color: white; }
.btn-danger  { background: var(--red);   color: white; }
.btn-outline { background: transparent; border: 2px solid var(--blue); color: var(--blue); }

/* ---- Grid ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---- Data Table ---- */
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.data-table th { text-align: left; padding: 10px 14px; background: var(--gray-100); color: var(--gray-600); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.data-table td { padding: 12px 14px; border-top: 1px solid var(--gray-200); }
.data-table tr:hover td { background: var(--gray-50); }

/* ---- Lock Icon ---- */
.lock-hint {
    text-align: center;
    padding: 48px 24px;
    color: var(--gray-600);
}
.lock-hint .icon { font-size: 3rem; margin-bottom: 16px; }
.lock-hint h2 { margin-bottom: 10px; }

/* ---- Login Form ---- */
.login-form { max-width: 480px; margin: 0 auto; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: .9rem; }
.form-group input[type=text], .form-group input[type=password], .form-group textarea {
    width: 100%; padding: 10px 14px; border: 1px solid var(--gray-200);
    border-radius: var(--radius); font-size: .95rem;
}
.form-group textarea { font-family: monospace; font-size: .8rem; resize: vertical; }

/* ---- Footer ---- */
.site-footer {
    margin-top: 60px;
    border-top: 1px solid var(--gray-200);
    padding: 20px 0;
    text-align: center;
    color: var(--gray-600);
    font-size: .85rem;
}
.site-footer a { color: var(--blue); text-decoration: none; }
/* ============================================================
   MZE SSO Test — Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue:      #1a56db;
    --blue-dark: #1e3a8a;
    --green:     #16a34a;
    --red:       #dc2626;
    --gray-50:   #f9fafb;
    --gray-100:  #f3f4f6;
    --gray-200:  #e5e7eb;
    --gray-600:  #4b5563;
    --gray-800:  #1f2937;
    --radius:    8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Header ---- */
.site-header {
    background: var(--blue-dark);
    color: white;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.logo { color: white; text-decoration: none; font-size: 1.25rem; font-weight: 700; }
.logo span { opacity: .65; font-weight: 400; }

nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
nav a { color: rgba(255,255,255,.85); text-decoration: none; padding: 6px 12px; border-radius: var(--radius); font-size: .9rem; transition: background .15s; }
nav a:hover, nav a.active { background: rgba(255,255,255,.15); color: white; }

.btn-nav { border-radius: 20px; font-weight: 600; font-size: .85rem; }
.btn-login  { background: var(--blue);  color: white !important; }
.btn-login:hover  { background: #1d4ed8 !important; }
.btn-logout { background: rgba(255,255,255,.15); }

/* ---- User Bar ---- */
.user-bar {
    background: #dbeafe;
    border-bottom: 1px solid #bfdbfe;
    padding: 8px 0;
    font-size: .85rem;
    color: #1e40af;
}

/* ---- Main ---- */
main { padding: 40px 20px; }

/* ---- Cards ---- */
.card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.card h2 { margin-bottom: 12px; font-size: 1.3rem; }
.card p  { color: var(--gray-600); margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }

/* ---- Hero ---- */
.hero {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: white;
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
    margin-bottom: 32px;
}
.hero h1 { font-size: 2rem; margin-bottom: 12px; }
.hero p  { opacity: .85; font-size: 1.1rem; margin-bottom: 24px; }

/* ---- Badges ---- */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.badge-public   { background: #dcfce7; color: var(--green); }
.badge-locked   { background: #fee2e2; color: var(--red); }
.badge-unlocked { background: #dbeafe; color: var(--blue); }

/* ---- Alert ---- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: .9rem;
}
.alert-info    { background: #dbeafe; border: 1px solid #bfdbfe; color: #1e40af; }
.alert-success { background: #dcfce7; border: 1px solid #bbf7d0; color: #15803d; }
.alert-error   { background: #fee2e2; border: 1px solid #fecaca; color: #991b1b; }
.alert-warning { background: #fef9c3; border: 1px solid #fde047; color: #854d0e; }

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: opacity .15s;
}
.btn:hover { opacity: .85; }
.btn-primary { background: var(--blue);  color: white; }
.btn-success { background: var(--green); color: white; }
.btn-danger  { background: var(--red);   color: white; }
.btn-outline { background: transparent; border: 2px solid var(--blue); color: var(--blue); }

/* ---- Grid ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---- Data Table ---- */
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.data-table th { text-align: left; padding: 10px 14px; background: var(--gray-100); color: var(--gray-600); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.data-table td { padding: 12px 14px; border-top: 1px solid var(--gray-200); }
.data-table tr:hover td { background: var(--gray-50); }

/* ---- Lock Icon ---- */
.lock-hint {
    text-align: center;
    padding: 48px 24px;
    color: var(--gray-600);
}
.lock-hint .icon { font-size: 3rem; margin-bottom: 16px; }
.lock-hint h2 { margin-bottom: 10px; }

/* ---- Login Form ---- */
.login-form { max-width: 480px; margin: 0 auto; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: .9rem; }
.form-group input[type=text], .form-group input[type=password], .form-group textarea {
    width: 100%; padding: 10px 14px; border: 1px solid var(--gray-200);
    border-radius: var(--radius); font-size: .95rem;
}
.form-group textarea { font-family: monospace; font-size: .8rem; resize: vertical; }

/* ---- Footer ---- */
.site-footer {
    margin-top: 60px;
    border-top: 1px solid var(--gray-200);
    padding: 20px 0;
    text-align: center;
    color: var(--gray-600);
    font-size: .85rem;
}
.site-footer a { color: var(--blue); text-decoration: none; }
/* ============================================================
   MZE SSO Test — Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue:      #1a56db;
    --blue-dark: #1e3a8a;
    --green:     #16a34a;
    --red:       #dc2626;
    --gray-50:   #f9fafb;
    --gray-100:  #f3f4f6;
    --gray-200:  #e5e7eb;
    --gray-600:  #4b5563;
    --gray-800:  #1f2937;
    --radius:    8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Header ---- */
.site-header {
    background: var(--blue-dark);
    color: white;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.logo { color: white; text-decoration: none; font-size: 1.25rem; font-weight: 700; }
.logo span { opacity: .65; font-weight: 400; }

nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
nav a { color: rgba(255,255,255,.85); text-decoration: none; padding: 6px 12px; border-radius: var(--radius); font-size: .9rem; transition: background .15s; }
nav a:hover, nav a.active { background: rgba(255,255,255,.15); color: white; }

.btn-nav { border-radius: 20px; font-weight: 600; font-size: .85rem; }
.btn-login  { background: var(--blue);  color: white !important; }
.btn-login:hover  { background: #1d4ed8 !important; }
.btn-logout { background: rgba(255,255,255,.15); }

/* ---- User Bar ---- */
.user-bar {
    background: #dbeafe;
    border-bottom: 1px solid #bfdbfe;
    padding: 8px 0;
    font-size: .85rem;
    color: #1e40af;
}

/* ---- Main ---- */
main { padding: 40px 20px; }

/* ---- Cards ---- */
.card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.card h2 { margin-bottom: 12px; font-size: 1.3rem; }
.card p  { color: var(--gray-600); margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }

/* ---- Hero ---- */
.hero {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: white;
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
    margin-bottom: 32px;
}
.hero h1 { font-size: 2rem; margin-bottom: 12px; }
.hero p  { opacity: .85; font-size: 1.1rem; margin-bottom: 24px; }

/* ---- Badges ---- */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.badge-public   { background: #dcfce7; color: var(--green); }
.badge-locked   { background: #fee2e2; color: var(--red); }
.badge-unlocked { background: #dbeafe; color: var(--blue); }

/* ---- Alert ---- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: .9rem;
}
.alert-info    { background: #dbeafe; border: 1px solid #bfdbfe; color: #1e40af; }
.alert-success { background: #dcfce7; border: 1px solid #bbf7d0; color: #15803d; }
.alert-error   { background: #fee2e2; border: 1px solid #fecaca; color: #991b1b; }
.alert-warning { background: #fef9c3; border: 1px solid #fde047; color: #854d0e; }

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: opacity .15s;
}
.btn:hover { opacity: .85; }
.btn-primary { background: var(--blue);  color: white; }
.btn-success { background: var(--green); color: white; }
.btn-danger  { background: var(--red);   color: white; }
.btn-outline { background: transparent; border: 2px solid var(--blue); color: var(--blue); }

/* ---- Grid ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---- Data Table ---- */
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.data-table th { text-align: left; padding: 10px 14px; background: var(--gray-100); color: var(--gray-600); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.data-table td { padding: 12px 14px; border-top: 1px solid var(--gray-200); }
.data-table tr:hover td { background: var(--gray-50); }

/* ---- Lock Icon ---- */
.lock-hint {
    text-align: center;
    padding: 48px 24px;
    color: var(--gray-600);
}
.lock-hint .icon { font-size: 3rem; margin-bottom: 16px; }
.lock-hint h2 { margin-bottom: 10px; }

/* ---- Login Form ---- */
.login-form { max-width: 480px; margin: 0 auto; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: .9rem; }
.form-group input[type=text], .form-group input[type=password], .form-group textarea {
    width: 100%; padding: 10px 14px; border: 1px solid var(--gray-200);
    border-radius: var(--radius); font-size: .95rem;
}
.form-group textarea { font-family: monospace; font-size: .8rem; resize: vertical; }

/* ---- Footer ---- */
.site-footer {
    margin-top: 60px;
    border-top: 1px solid var(--gray-200);
    padding: 20px 0;
    text-align: center;
    color: var(--gray-600);
    font-size: .85rem;
}
.site-footer a { color: var(--blue); text-decoration: none; }
/* ============================================================
   MZE SSO Test — Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue:      #1a56db;
    --blue-dark: #1e3a8a;
    --green:     #16a34a;
    --red:       #dc2626;
    --gray-50:   #f9fafb;
    --gray-100:  #f3f4f6;
    --gray-200:  #e5e7eb;
    --gray-600:  #4b5563;
    --gray-800:  #1f2937;
    --radius:    8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Header ---- */
.site-header {
    background: var(--blue-dark);
    color: white;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.logo { color: white; text-decoration: none; font-size: 1.25rem; font-weight: 700; }
.logo span { opacity: .65; font-weight: 400; }

nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
nav a { color: rgba(255,255,255,.85); text-decoration: none; padding: 6px 12px; border-radius: var(--radius); font-size: .9rem; transition: background .15s; }
nav a:hover, nav a.active { background: rgba(255,255,255,.15); color: white; }

.btn-nav { border-radius: 20px; font-weight: 600; font-size: .85rem; }
.btn-login  { background: var(--blue);  color: white !important; }
.btn-login:hover  { background: #1d4ed8 !important; }
.btn-logout { background: rgba(255,255,255,.15); }

/* ---- User Bar ---- */
.user-bar {
    background: #dbeafe;
    border-bottom: 1px solid #bfdbfe;
    padding: 8px 0;
    font-size: .85rem;
    color: #1e40af;
}

/* ---- Main ---- */
main { padding: 40px 20px; }

/* ---- Cards ---- */
.card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.card h2 { margin-bottom: 12px; font-size: 1.3rem; }
.card p  { color: var(--gray-600); margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }

/* ---- Hero ---- */
.hero {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: white;
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
    margin-bottom: 32px;
}
.hero h1 { font-size: 2rem; margin-bottom: 12px; }
.hero p  { opacity: .85; font-size: 1.1rem; margin-bottom: 24px; }

/* ---- Badges ---- */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.badge-public   { background: #dcfce7; color: var(--green); }
.badge-locked   { background: #fee2e2; color: var(--red); }
.badge-unlocked { background: #dbeafe; color: var(--blue); }

/* ---- Alert ---- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: .9rem;
}
.alert-info    { background: #dbeafe; border: 1px solid #bfdbfe; color: #1e40af; }
.alert-success { background: #dcfce7; border: 1px solid #bbf7d0; color: #15803d; }
.alert-error   { background: #fee2e2; border: 1px solid #fecaca; color: #991b1b; }
.alert-warning { background: #fef9c3; border: 1px solid #fde047; color: #854d0e; }

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: opacity .15s;
}
.btn:hover { opacity: .85; }
.btn-primary { background: var(--blue);  color: white; }
.btn-success { background: var(--green); color: white; }
.btn-danger  { background: var(--red);   color: white; }
.btn-outline { background: transparent; border: 2px solid var(--blue); color: var(--blue); }

/* ---- Grid ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---- Data Table ---- */
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.data-table th { text-align: left; padding: 10px 14px; background: var(--gray-100); color: var(--gray-600); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.data-table td { padding: 12px 14px; border-top: 1px solid var(--gray-200); }
.data-table tr:hover td { background: var(--gray-50); }

/* ---- Lock Icon ---- */
.lock-hint {
    text-align: center;
    padding: 48px 24px;
    color: var(--gray-600);
}
.lock-hint .icon { font-size: 3rem; margin-bottom: 16px; }
.lock-hint h2 { margin-bottom: 10px; }

/* ---- Login Form ---- */
.login-form { max-width: 480px; margin: 0 auto; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: .9rem; }
.form-group input[type=text], .form-group input[type=password], .form-group textarea {
    width: 100%; padding: 10px 14px; border: 1px solid var(--gray-200);
    border-radius: var(--radius); font-size: .95rem;
}
.form-group textarea { font-family: monospace; font-size: .8rem; resize: vertical; }

/* ---- Footer ---- */
.site-footer {
    margin-top: 60px;
    border-top: 1px solid var(--gray-200);
    padding: 20px 0;
    text-align: center;
    color: var(--gray-600);
    font-size: .85rem;
}
.site-footer a { color: var(--blue); text-decoration: none; }
/* ============================================================
   MZE SSO Test — Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue:      #1a56db;
    --blue-dark: #1e3a8a;
    --green:     #16a34a;
    --red:       #dc2626;
    --gray-50:   #f9fafb;
    --gray-100:  #f3f4f6;
    --gray-200:  #e5e7eb;
    --gray-600:  #4b5563;
    --gray-800:  #1f2937;
    --radius:    8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Header ---- */
.site-header {
    background: var(--blue-dark);
    color: white;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.logo { color: white; text-decoration: none; font-size: 1.25rem; font-weight: 700; }
.logo span { opacity: .65; font-weight: 400; }

nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
nav a { color: rgba(255,255,255,.85); text-decoration: none; padding: 6px 12px; border-radius: var(--radius); font-size: .9rem; transition: background .15s; }
nav a:hover, nav a.active { background: rgba(255,255,255,.15); color: white; }

.btn-nav { border-radius: 20px; font-weight: 600; font-size: .85rem; }
.btn-login  { background: var(--blue);  color: white !important; }
.btn-login:hover  { background: #1d4ed8 !important; }
.btn-logout { background: rgba(255,255,255,.15); }

/* ---- User Bar ---- */
.user-bar {
    background: #dbeafe;
    border-bottom: 1px solid #bfdbfe;
    padding: 8px 0;
    font-size: .85rem;
    color: #1e40af;
}

/* ---- Main ---- */
main { padding: 40px 20px; }

/* ---- Cards ---- */
.card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.card h2 { margin-bottom: 12px; font-size: 1.3rem; }
.card p  { color: var(--gray-600); margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }

/* ---- Hero ---- */
.hero {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: white;
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
    margin-bottom: 32px;
}
.hero h1 { font-size: 2rem; margin-bottom: 12px; }
.hero p  { opacity: .85; font-size: 1.1rem; margin-bottom: 24px; }

/* ---- Badges ---- */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.badge-public   { background: #dcfce7; color: var(--green); }
.badge-locked   { background: #fee2e2; color: var(--red); }
.badge-unlocked { background: #dbeafe; color: var(--blue); }

/* ---- Alert ---- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: .9rem;
}
.alert-info    { background: #dbeafe; border: 1px solid #bfdbfe; color: #1e40af; }
.alert-success { background: #dcfce7; border: 1px solid #bbf7d0; color: #15803d; }
.alert-error   { background: #fee2e2; border: 1px solid #fecaca; color: #991b1b; }
.alert-warning { background: #fef9c3; border: 1px solid #fde047; color: #854d0e; }

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: opacity .15s;
}
.btn:hover { opacity: .85; }
.btn-primary { background: var(--blue);  color: white; }
.btn-success { background: var(--green); color: white; }
.btn-danger  { background: var(--red);   color: white; }
.btn-outline { background: transparent; border: 2px solid var(--blue); color: var(--blue); }

/* ---- Grid ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---- Data Table ---- */
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.data-table th { text-align: left; padding: 10px 14px; background: var(--gray-100); color: var(--gray-600); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.data-table td { padding: 12px 14px; border-top: 1px solid var(--gray-200); }
.data-table tr:hover td { background: var(--gray-50); }

/* ---- Lock Icon ---- */
.lock-hint {
    text-align: center;
    padding: 48px 24px;
    color: var(--gray-600);
}
.lock-hint .icon { font-size: 3rem; margin-bottom: 16px; }
.lock-hint h2 { margin-bottom: 10px; }

/* ---- Login Form ---- */
.login-form { max-width: 480px; margin: 0 auto; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: .9rem; }
.form-group input[type=text], .form-group input[type=password], .form-group textarea {
    width: 100%; padding: 10px 14px; border: 1px solid var(--gray-200);
    border-radius: var(--radius); font-size: .95rem;
}
.form-group textarea { font-family: monospace; font-size: .8rem; resize: vertical; }

/* ---- Footer ---- */
.site-footer {
    margin-top: 60px;
    border-top: 1px solid var(--gray-200);
    padding: 20px 0;
    text-align: center;
    color: var(--gray-600);
    font-size: .85rem;
}
.site-footer a { color: var(--blue); text-decoration: none; }
/* ============================================================
   MZE SSO Test — Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue:      #1a56db;
    --blue-dark: #1e3a8a;
    --green:     #16a34a;
    --red:       #dc2626;
    --gray-50:   #f9fafb;
    --gray-100:  #f3f4f6;
    --gray-200:  #e5e7eb;
    --gray-600:  #4b5563;
    --gray-800:  #1f2937;
    --radius:    8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Header ---- */
.site-header {
    background: var(--blue-dark);
    color: white;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.logo { color: white; text-decoration: none; font-size: 1.25rem; font-weight: 700; }
.logo span { opacity: .65; font-weight: 400; }

nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
nav a { color: rgba(255,255,255,.85); text-decoration: none; padding: 6px 12px; border-radius: var(--radius); font-size: .9rem; transition: background .15s; }
nav a:hover, nav a.active { background: rgba(255,255,255,.15); color: white; }

.btn-nav { border-radius: 20px; font-weight: 600; font-size: .85rem; }
.btn-login  { background: var(--blue);  color: white !important; }
.btn-login:hover  { background: #1d4ed8 !important; }
.btn-logout { background: rgba(255,255,255,.15); }

/* ---- User Bar ---- */
.user-bar {
    background: #dbeafe;
    border-bottom: 1px solid #bfdbfe;
    padding: 8px 0;
    font-size: .85rem;
    color: #1e40af;
}

/* ---- Main ---- */
main { padding: 40px 20px; }

/* ---- Cards ---- */
.card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.card h2 { margin-bottom: 12px; font-size: 1.3rem; }
.card p  { color: var(--gray-600); margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }

/* ---- Hero ---- */
.hero {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: white;
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
    margin-bottom: 32px;
}
.hero h1 { font-size: 2rem; margin-bottom: 12px; }
.hero p  { opacity: .85; font-size: 1.1rem; margin-bottom: 24px; }

/* ---- Badges ---- */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.badge-public   { background: #dcfce7; color: var(--green); }
.badge-locked   { background: #fee2e2; color: var(--red); }
.badge-unlocked { background: #dbeafe; color: var(--blue); }

/* ---- Alert ---- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: .9rem;
}
.alert-info    { background: #dbeafe; border: 1px solid #bfdbfe; color: #1e40af; }
.alert-success { background: #dcfce7; border: 1px solid #bbf7d0; color: #15803d; }
.alert-error   { background: #fee2e2; border: 1px solid #fecaca; color: #991b1b; }
.alert-warning { background: #fef9c3; border: 1px solid #fde047; color: #854d0e; }

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: opacity .15s;
}
.btn:hover { opacity: .85; }
.btn-primary { background: var(--blue);  color: white; }
.btn-success { background: var(--green); color: white; }
.btn-danger  { background: var(--red);   color: white; }
.btn-outline { background: transparent; border: 2px solid var(--blue); color: var(--blue); }

/* ---- Grid ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---- Data Table ---- */
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.data-table th { text-align: left; padding: 10px 14px; background: var(--gray-100); color: var(--gray-600); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.data-table td { padding: 12px 14px; border-top: 1px solid var(--gray-200); }
.data-table tr:hover td { background: var(--gray-50); }

/* ---- Lock Icon ---- */
.lock-hint {
    text-align: center;
    padding: 48px 24px;
    color: var(--gray-600);
}
.lock-hint .icon { font-size: 3rem; margin-bottom: 16px; }
.lock-hint h2 { margin-bottom: 10px; }

/* ---- Login Form ---- */
.login-form { max-width: 480px; margin: 0 auto; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: .9rem; }
.form-group input[type=text], .form-group input[type=password], .form-group textarea {
    width: 100%; padding: 10px 14px; border: 1px solid var(--gray-200);
    border-radius: var(--radius); font-size: .95rem;
}
.form-group textarea { font-family: monospace; font-size: .8rem; resize: vertical; }

/* ---- Footer ---- */
.site-footer {
    margin-top: 60px;
    border-top: 1px solid var(--gray-200);
    padding: 20px 0;
    text-align: center;
    color: var(--gray-600);
    font-size: .85rem;
}
.site-footer a { color: var(--blue); text-decoration: none; }
/* ============================================================
   MZE SSO Test — Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue:      #1a56db;
    --blue-dark: #1e3a8a;
    --green:     #16a34a;
    --red:       #dc2626;
    --gray-50:   #f9fafb;
    --gray-100:  #f3f4f6;
    --gray-200:  #e5e7eb;
    --gray-600:  #4b5563;
    --gray-800:  #1f2937;
    --radius:    8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Header ---- */
.site-header {
    background: var(--blue-dark);
    color: white;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.logo { color: white; text-decoration: none; font-size: 1.25rem; font-weight: 700; }
.logo span { opacity: .65; font-weight: 400; }

nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
nav a { color: rgba(255,255,255,.85); text-decoration: none; padding: 6px 12px; border-radius: var(--radius); font-size: .9rem; transition: background .15s; }
nav a:hover, nav a.active { background: rgba(255,255,255,.15); color: white; }

.btn-nav { border-radius: 20px; font-weight: 600; font-size: .85rem; }
.btn-login  { background: var(--blue);  color: white !important; }
.btn-login:hover  { background: #1d4ed8 !important; }
.btn-logout { background: rgba(255,255,255,.15); }

/* ---- User Bar ---- */
.user-bar {
    background: #dbeafe;
    border-bottom: 1px solid #bfdbfe;
    padding: 8px 0;
    font-size: .85rem;
    color: #1e40af;
}

/* ---- Main ---- */
main { padding: 40px 20px; }

/* ---- Cards ---- */
.card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.card h2 { margin-bottom: 12px; font-size: 1.3rem; }
.card p  { color: var(--gray-600); margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }

/* ---- Hero ---- */
.hero {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: white;
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
    margin-bottom: 32px;
}
.hero h1 { font-size: 2rem; margin-bottom: 12px; }
.hero p  { opacity: .85; font-size: 1.1rem; margin-bottom: 24px; }

/* ---- Badges ---- */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.badge-public   { background: #dcfce7; color: var(--green); }
.badge-locked   { background: #fee2e2; color: var(--red); }
.badge-unlocked { background: #dbeafe; color: var(--blue); }

/* ---- Alert ---- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: .9rem;
}
.alert-info    { background: #dbeafe; border: 1px solid #bfdbfe; color: #1e40af; }
.alert-success { background: #dcfce7; border: 1px solid #bbf7d0; color: #15803d; }
.alert-error   { background: #fee2e2; border: 1px solid #fecaca; color: #991b1b; }
.alert-warning { background: #fef9c3; border: 1px solid #fde047; color: #854d0e; }

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: opacity .15s;
}
.btn:hover { opacity: .85; }
.btn-primary { background: var(--blue);  color: white; }
.btn-success { background: var(--green); color: white; }
.btn-danger  { background: var(--red);   color: white; }
.btn-outline { background: transparent; border: 2px solid var(--blue); color: var(--blue); }

/* ---- Grid ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---- Data Table ---- */
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.data-table th { text-align: left; padding: 10px 14px; background: var(--gray-100); color: var(--gray-600); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.data-table td { padding: 12px 14px; border-top: 1px solid var(--gray-200); }
.data-table tr:hover td { background: var(--gray-50); }

/* ---- Lock Icon ---- */
.lock-hint {
    text-align: center;
    padding: 48px 24px;
    color: var(--gray-600);
}
.lock-hint .icon { font-size: 3rem; margin-bottom: 16px; }
.lock-hint h2 { margin-bottom: 10px; }

/* ---- Login Form ---- */
.login-form { max-width: 480px; margin: 0 auto; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: .9rem; }
.form-group input[type=text], .form-group input[type=password], .form-group textarea {
    width: 100%; padding: 10px 14px; border: 1px solid var(--gray-200);
    border-radius: var(--radius); font-size: .95rem;
}
.form-group textarea { font-family: monospace; font-size: .8rem; resize: vertical; }

/* ---- Footer ---- */
.site-footer {
    margin-top: 60px;
    border-top: 1px solid var(--gray-200);
    padding: 20px 0;
    text-align: center;
    color: var(--gray-600);
    font-size: .85rem;
}
.site-footer a { color: var(--blue); text-decoration: none; }
