/* ============================================================
   GNDU ODL Admin - Login_Admin page styles (prefix: lgx-)
   Clay enterprise theme: warm stone field, white clay card.
   Isolated to the standalone admin login screen only.
   ============================================================ */

.lgx-body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    color: #212121;
    background: #eeece7;
    position: relative;
    overflow-x: hidden;
}

/* Subtle clay texture wash (flat, media-free) */
.lgx-body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(600px 300px at 12% 0%, rgba(255, 119, 89, 0.07), transparent 60%),
        radial-gradient(700px 380px at 100% 100%, rgba(0, 60, 51, 0.08), transparent 60%);
    z-index: -1;
}

.lgx-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px 48px 16px;
    box-sizing: border-box;
}

/* Brand header / footer */
.lgx-brand {
    text-align: center;
    margin: 34px 0;
    animation: lgxFadeInDown 0.5s ease;
}

.lgx-brand h4 {
    margin: 8px 0;
    font-weight: 500;
    color: #616161;
}

.lgx-brand a {
    color: var(--adm-blue, #1863dc);
    text-decoration: none;
}

.lgx-brand a:hover {
    text-decoration: underline;
}

.lgx-logo {
    width: 84px;
    height: 84px;
    object-fit: contain;
    margin-bottom: 14px;
}

.lgx-title {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
    color: #17171c;
}

.lgx-highlight {
    color: var(--adm-coral, #ff7759);
}

/* Mono system label above the card */
.lgx-system-label {
    display: inline-block;
    font-family: var(--font-mono, Consolas, monospace);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #93939f;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    padding: 6px 16px;
    margin-bottom: 18px;
}

/* Login card */
.lgx-login-box {
    max-width: 400px;
    margin: 0 auto;
    padding: 36px 34px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    box-shadow: 0 1px 2px rgba(23, 23, 28, 0.04), 0 24px 48px -32px rgba(23, 23, 28, 0.35);
    animation: lgxFadeInUp 0.4s ease;
}

.lgx-page-title {
    text-align: center;
    border-bottom: none;
    padding-bottom: 6px;
    margin-bottom: 26px;
    letter-spacing: -0.02em;
}

@media (max-width: 480px) {
    .lgx-title {
        font-size: 23px;
    }

    .lgx-brand h4 {
        font-size: 13.5px;
    }

    .lgx-login-box {
        padding: 28px 20px;
        border-radius: 16px;
    }
}

@keyframes lgxFadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes lgxFadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
