body.bluedot-auth-page {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(73, 133, 255, 0.22), transparent 34%),
        radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.18), transparent 30%),
        linear-gradient(135deg, #081120 0%, #0c1728 45%, #12263f 100%);
    color: #e8eef8;
}

.bluedot-auth-shell {
    position: relative;
    overflow: hidden;
}

.bluedot-auth-container {
    max-width: 1220px;
}

.bluedot-auth-row {
    gap: 42px;
}

.bluedot-auth-panel {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 54px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(10, 19, 34, 0.88), rgba(13, 27, 47, 0.78));
    box-shadow: 0 40px 100px rgba(2, 8, 23, 0.42);
    backdrop-filter: blur(18px);
}

.bluedot-auth-backdrop {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 92%);
    pointer-events: none;
}

.bluedot-auth-story {
    position: relative;
    z-index: 1;
    max-width: 540px;
}

.bluedot-auth-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 8px 14px;
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 999px;
    background: rgba(10, 21, 37, 0.56);
    color: #8dd5ff;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.bluedot-auth-story h1 {
    margin: 0 0 18px;
    color: #f8fbff;
    font-size: clamp(2.35rem, 3.8vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.bluedot-auth-story p {
    max-width: 500px;
    margin: 0 0 28px;
    color: rgba(222, 232, 245, 0.78);
    font-size: 1rem;
    line-height: 1.76;
}

.bluedot-auth-metrics {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

.bluedot-auth-metric {
    min-height: auto;
    padding: 20px 20px;
    border: 1px solid rgba(141, 213, 255, 0.1);
    border-radius: 20px;
    background: rgba(9, 18, 32, 0.62);
    box-shadow: none;
    backdrop-filter: blur(18px);
}

.bluedot-auth-metric strong {
    display: block;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}

.bluedot-auth-metric span {
    display: block;
    color: rgba(222, 232, 245, 0.72);
    font-size: 0.89rem;
    line-height: 1.6;
}

.bluedot-login-card {
    position: relative;
    z-index: 1;
    max-width: 440px;
    margin: 0 auto;
    padding: 34px 30px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 28px 70px rgba(2, 8, 23, 0.22);
}

.bluedot-login-brand {
    margin-bottom: 22px;
    text-align: center;
}

.bluedot-login-logo {
    max-width: 230px;
    width: 100%;
    height: auto;
}

.bluedot-login-brand p {
    margin: 14px auto 0;
    max-width: 320px;
    color: #526277;
    font-size: 0.92rem;
    line-height: 1.65;
}

.bluedot-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.bluedot-alert-error {
    background: rgba(254, 226, 226, 0.95);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.18);
}

.bluedot-alert-success {
    background: rgba(220, 252, 231, 0.95);
    color: #166534;
    border: 1px solid rgba(34, 197, 94, 0.18);
}

.bluedot-login-form {
    display: grid;
    gap: 16px;
}

.bluedot-field label {
    display: inline-block;
    margin-bottom: 8px;
    color: #15304d;
    font-size: 0.87rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.bluedot-field .form-control,
.bluedot-field .form-select {
    min-height: 50px;
    border: 1px solid #d8e1eb;
    border-radius: 14px;
    background: #f8fafc;
    color: #0f172a;
    box-shadow: none;
}

.bluedot-field .form-control:focus,
.bluedot-field .form-select:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
    background: #ffffff;
}

.bluedot-login-button {
    min-height: 52px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #0f172a 0%, #0f4c81 50%, #0891b2 100%);
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.bluedot-login-button:hover,
.bluedot-login-button:focus {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(8, 145, 178, 0.28);
}

.bluedot-login-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    color: #64748b;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .bluedot-auth-panel {
        padding: 34px 22px;
    }

    .bluedot-auth-story {
        margin-bottom: 10px;
        text-align: center;
    }

    .bluedot-auth-metrics {
        grid-template-columns: 1fr;
    }

    .bluedot-login-card {
        padding: 26px 22px;
    }

    .bluedot-auth-story p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575.98px) {
    .bluedot-auth-panel {
        padding: 24px 16px;
        border-radius: 24px;
    }

    .bluedot-auth-story h1 {
        font-size: 1.9rem;
    }

    .bluedot-auth-kicker {
        letter-spacing: 0.1em;
    }

    .bluedot-auth-row {
        gap: 22px;
    }
}
