*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#050816;
    color:white;
}

.suite-login{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        radial-gradient(circle at top left, rgba(37,99,235,.35), transparent 30%),
        radial-gradient(circle at bottom right, rgba(124,58,237,.35), transparent 30%),
        #050816;
}

.login-card{
    width:390px;
    max-width:90%;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(18px);
    padding:36px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.logo-badge{
    width:58px;
    height:58px;
    border-radius:18px;
    background:linear-gradient(135deg,#2563eb,#7c3aed);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 18px;
    font-weight:bold;
    font-size:20px;
}

.login-card h1{
    margin:0;
    font-size:34px;
}

.login-subtitle{
    color:#cbd5e1;
    line-height:1.5;
}

.login-card input{
    width:100%;
    padding:14px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.2);
    background:rgba(255,255,255,.1);
    color:white;
    margin:18px 0 12px;
}

.login-card input::placeholder{
    color:#94a3b8;
}

.login-card button,
#suiteLogout{
    width:100%;
    padding:14px;
    border:0;
    border-radius:12px;
    background:white;
    color:#0f172a;
    font-weight:bold;
    cursor:pointer;
}

#suiteLoginError{
    display:block;
    margin-top:12px;
    color:#f87171;
    font-weight:bold;
}

.suite-app{
    min-height:100vh;
    padding:32px;
    background:
        radial-gradient(circle at top right, rgba(37,99,235,.22), transparent 28%),
        #f8fafc;
    color:#0f172a;
}

.suite-header{
    max-width:1180px;
    margin:0 auto 28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.eyebrow{
    font-size:13px;
    text-transform:uppercase;
    color:#2563eb;
    font-weight:bold;
    letter-spacing:.12em;
}

.suite-header h1{
    margin:4px 0;
    font-size:42px;
}

.suite-header p{
    color:#64748b;
}

#suiteLogout{
    width:auto;
    background:#0f172a;
    color:white;
    padding:12px 18px;
}

.hero{
    max-width:1180px;
    margin:0 auto 26px;
    background:linear-gradient(135deg,#0f172a,#1e293b);
    color:white;
    padding:34px;
    border-radius:26px;
    box-shadow:0 20px 60px rgba(15,23,42,.18);
}

.hero h2{
    margin:0 0 10px;
    font-size:32px;
}

.hero p{
    max-width:720px;
    color:#cbd5e1;
    line-height:1.6;
}

.module-grid{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.module-card{
    background:white;
    border:1px solid #e5e7eb;
    border-radius:22px;
    padding:24px;
    text-decoration:none;
    color:#0f172a;
    min-height:230px;
    transition:.2s ease;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
}

.module-card.active:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 50px rgba(15,23,42,.12);
}

.module-card.disabled{
    opacity:.55;
    cursor:not-allowed;
}

.module-icon{
    font-size:32px;
    margin-bottom:18px;
}

.module-card span{
    display:inline-block;
    font-size:12px;
    font-weight:bold;
    background:#eff6ff;
    color:#2563eb;
    padding:6px 10px;
    border-radius:999px;
}

.module-card h3{
    margin:16px 0 10px;
    font-size:22px;
}

.module-card p{
    color:#64748b;
    line-height:1.5;
}

@media(max-width:900px){
    .module-grid{
        grid-template-columns:1fr;
    }

    .suite-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .suite-app{
        padding:20px;
    }
}
.login-tabs{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin:22px 0 8px;
    background:rgba(255,255,255,.08);
    padding:6px;
    border-radius:14px;
}

.login-tabs button{
    border:0;
    border-radius:10px;
    padding:12px;
    background:transparent;
    color:#cbd5e1;
    cursor:pointer;
    font-weight:bold;
}

.login-tabs button.active{
    background:white;
    color:#0f172a;
}
