/* Extracted from login.php block 1 */
.login-simple-page {
        min-height: calc(100vh - 72px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 96px 16px 32px;
        background:
            radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.16), transparent 26%),
            radial-gradient(circle at 80% 30%, rgba(99, 102, 241, 0.12), transparent 24%),
            linear-gradient(180deg, #060913, #03060d);
    }

    .login-simple-card {
        width: min(100%, 420px);
        padding: 32px 28px;
        border-radius: 24px;
        border: 1px solid rgba(255,255,255,0.10);
        background: rgba(8, 13, 24, 0.9);
        box-shadow: 0 30px 80px rgba(0,0,0,0.42);
        text-align: center;
    }

    .login-simple-kicker {
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: #8fdcff;
        margin-bottom: 10px;
    }

    .login-simple-title {
        margin: 0;
        font-size: clamp(2rem, 5vw, 2.6rem);
        line-height: 1;
        color: #f7fbff;
    }

    .login-simple-copy {
        margin: 12px 0 0;
        color: rgba(255,255,255,0.72);
        line-height: 1.6;
    }

    .login-simple-error {
        margin-top: 18px;
        padding: 12px 14px;
        border-radius: 14px;
        border: 1px solid rgba(239, 68, 68, 0.35);
        background: rgba(127, 29, 29, 0.38);
        color: #fecaca;
        text-align: left;
    }

    .login-simple-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 50px;
        margin-top: 20px;
        padding: 0 20px;
        border-radius: 999px;
        background: linear-gradient(135deg, #5865f2, #8b95ff);
        color: #fff;
        text-decoration: none;
        font-weight: 800;
        box-shadow: 0 18px 40px rgba(88, 101, 242, 0.28);
    }


