
 :root { --bg: #070b10; --bg2: #0b1118; --bg3: #101820; --border: rgba(255,255,255,.08); --border2: rgba(255,255,255,.14); --text: #f1f6fb; --text2: #a9b5c2; --text3: #657383; --blue: #4a9ee8; --cyan: #00d9ff; --purple: #8888f8; --red: #e85a5a; --green: #3dcc8e; } * { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 25px; background: radial-gradient( circle at 50% 20%, rgba(0,153,255,.10), transparent 35% ), radial-gradient( circle at 20% 80%, rgba(136,136,248,.05), transparent 30% ), var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; } .login-container { width: 100%; max-width: 430px; } .logo { text-align: center; margin-bottom: 28px; } .logo-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; border-radius: 13px; background: linear-gradient( 135deg, var(--cyan), #007cff ); color: white; font-size: 21px; box-shadow: 0 0 30px rgba(0,217,255,.20); } .logo h1 { font-family: 'Outfit', sans-serif; font-size: 20px; } .logo p { margin-top: 5px; color: var(--text3); font-size: 12px; } .login-card { padding: 35px; border: 1px solid var(--border2); border-radius: 17px; background: linear-gradient( 145deg, rgba(255,255,255,.035), rgba(255,255,255,.012) ); box-shadow: 0 30px 90px rgba(0,0,0,.45), 0 0 50px rgba(74,158,232,.06); backdrop-filter: blur(15px); } .login-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; margin-bottom: 17px; border: 1px solid rgba(136,136,248,.18); border-radius: 30px; background: rgba(136,136,248,.06); color: var(--purple); font-size: 10px; font-weight: 600; } .badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 10px var(--purple); } .login-card h2 { font-family: 'Outfit', sans-serif; font-size: 32px; letter-spacing: -1px; margin-bottom: 8px; } .login-description { color: var(--text3); font-size: 13px; line-height: 1.7; margin-bottom: 27px; } .form-group { margin-bottom: 17px; } .form-group label { display: block; margin-bottom: 8px; color: var(--text2); font-size: 11px; font-weight: 500; } .form-group input { width: 100%; padding: 13px 14px; border: 1px solid var(--border2); border-radius: 8px; outline: none; background: var(--bg2); color: var(--text); font-family: inherit; font-size: 13px; transition: .25s; } .form-group input::placeholder { color: var(--text3); } .form-group input:focus { border-color: rgba(74,158,232,.55); box-shadow: 0 0 0 3px rgba(74,158,232,.08); } .login-button { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 8px; padding: 13px 18px; border: none; border-radius: 9px; cursor: pointer; background: linear-gradient( 135deg, #4a9ee8, #2676c0 ); color: white; font-family: inherit; font-size: 13px; font-weight: 600; box-shadow: 0 10px 30px rgba(74,158,232,.15); transition: .25s; } .login-button:hover { transform: translateY(-2px); box-shadow: 0 14px 35px rgba(74,158,232,.25); } .error-message { display: none; margin-bottom: 17px; padding: 11px 13px; border: 1px solid rgba(232,90,90,.25); border-radius: 8px; background: rgba(232,90,90,.07); color: var(--red); font-size: 11px; text-align: center; } .error-message.show { display: block; } .back-home { display: block; margin-top: 22px; color: var(--text3); text-align: center; font-size: 11px; transition: .2s; } .back-home:hover { color: var(--text); } .security-note { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 20px; color: var(--text3); font-size: 12px; } .security-note span { color: var(--green); } @media(max-width:500px) { body { padding: 18px; } .login-card { padding: 27px 22px; } .login-card h2 { font-size: 29px; } }
/* =========================================================
   PREMIUM SAAS — DEMO CREDENTIALS
   ========================================================= */

.demo-credentials {
    width: 100%;
    max-width: 900px;
    margin: 32px auto;
    padding: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.025)
        );

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 24px;

    box-shadow:
        0 24px 70px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.05);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}


/* HEADER
--------------------------------------------------------- */

.demo-credentials-header {
    margin-bottom: 24px;
}

.demo-badge {
    display: inline-flex;
    align-items: center;

    padding: 6px 11px;

    border: 1px solid rgba(74,158,232,.25);
    border-radius: 999px;

    background: rgba(74,158,232,.08);

    color: #7ec8f0;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.demo-credentials-header h3 {
    margin: 12px 0 6px;

    font-size: 22px;
    font-weight: 750;
    letter-spacing: -.02em;

    color: #fff;
}

.demo-credentials-header p {
    margin: 0;

    color: rgba(255,255,255,.55);

    font-size: 14px;
    line-height: 1.6;
}


/* GRID
--------------------------------------------------------- */

.credential-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}


/* CARD
--------------------------------------------------------- */

.credential-card {
    padding: 20px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.018)
        );

    transition:
        transform .25s cubic-bezier(.16,1,.3,1),
        border-color .25s ease,
        box-shadow .25s ease;
}

.credential-card:hover {
    transform: translateY(-3px);

    border-color: rgba(74,158,232,.28);

    box-shadow:
        0 16px 40px rgba(0,0,0,.22),
        0 0 30px rgba(74,158,232,.06);
}


/* CARD HEADER
--------------------------------------------------------- */

.credential-card-header {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 18px;
}

.credential-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 42px;

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(74,158,232,.18),
            rgba(74,158,232,.05)
        );

    border: 1px solid rgba(74,158,232,.18);

    color: #7ec8f0;

    font-size: 16px;
}

.credential-card-header h4 {
    margin: 0 0 3px;

    color: #fff;

    font-size: 15px;
    font-weight: 700;
}

.credential-card-header span {
    color: rgba(255,255,255,.45);

    font-size: 12px;
}


/* CREDENTIAL ROW
--------------------------------------------------------- */

.credential-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 58px;

    padding: 10px 12px;

    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;

    background: rgba(0,0,0,.14);

    margin-top: 9px;
}

.credential-label {
    min-width: 0;
}

.credential-label span {
    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,.38);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.credential-label strong {
    display: block;

    color: rgba(255,255,255,.88);

    font-family: monospace;
    font-size: 13px;
    font-weight: 600;
}


/* COPY BUTTON
--------------------------------------------------------- */

.copy-credential {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 34px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 9px;

    background: rgba(255,255,255,.04);

    color: rgba(255,255,255,.55);

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.copy-credential:hover {
    background: rgba(74,158,232,.12);

    border-color: rgba(74,158,232,.28);

    color: #7ec8f0;

    transform: translateY(-1px);
}

.copy-credential:active {
    transform: scale(.94);
}


/* SECURITY NOTE
--------------------------------------------------------- */

.demo-security-note {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 18px;
    padding: 11px 13px;

    border-radius: 11px;

    background: rgba(255,255,255,.025);

    color: rgba(255,255,255,.42);

    font-size: 11px;
}

.demo-security-note i {
    color: #7ec8f0;
    font-size: 12px;
}


/* RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 700px) {

    .demo-credentials {
        padding: 20px;
        border-radius: 20px;
    }

    .credential-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {

    .demo-credentials {
        padding: 16px;
    }

    .demo-credentials-header h3 {
        font-size: 19px;
    }

}


    .account-options {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 20px;
    }

    .account-option {
        padding: 12px;
        border: 1px solid var(--border2);
        border-radius: 9px;
        background: var(--bg2);
        color: var(--text2);
        font-family: inherit;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        transition: .25s;
    }

    .account-option:hover {
        border-color: rgba(74,158,232,.5);
        color: var(--text);
    }

    .account-option.active {
    border-color: #16c747;
    background: rgb(17 209 60 / 12%);
    color: white;
    box-shadow: 0 0 15px rgb(4 251 137 / 8%);
}