/* ========================================
   AUTH PAGE
======================================== */

.auth-page {
    min-height: 100vh;

    display: grid;

    grid-template-columns: 1fr 1fr;

    background: #f8fafc;
}


/* ========================================
   LOGIN CARD
======================================== */

.auth-card {
    display: flex;

    flex-direction: column;

    justify-content: space-between;

    min-height: 100vh;

    padding: 42px 8%;

    background: #ffffff;
}


.auth-logo {
    width: fit-content;

    color: #0f172a;

    font-size: 28px;

    font-weight: 850;

    letter-spacing: -1px;

    text-decoration: none;
}


/* ========================================
   MAIN CONTENT
======================================== */

.auth-content {
    width: 100%;

    max-width: 520px;

    margin: auto;
}


/* ========================================
   LABEL
======================================== */

.auth-label,
.auth-side-label {
    color: #2563eb;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.2px;

    line-height: 1.4;
}


/* ========================================
   MAIN HEADING
======================================== */

.auth-content h1 {
    margin-top: 20px;

    color: #0f172a;

    font-size: clamp(48px, 5vw, 68px);

    line-height: 1.02;

    letter-spacing: -3.5px;

    font-weight: 800;
}


/* ========================================
   DESCRIPTION
======================================== */

.auth-content p {
    max-width: 470px;

    margin-top: 24px;

    color: #1e293b;

    font-size: 20px;

    line-height: 1.65;
}


/* ========================================
   GOOGLE LOGIN
======================================== */

.auth-google {
    margin-top: 40px;

    min-height: 50px;
}


.auth-google .g_id_signin {
    width: 100%;
}


.auth-note {
    margin-top: 18px;

    color: #475569;

    font-size: 14px;

    line-height: 1.6;
}


/* ========================================
   BOTTOM
======================================== */

.auth-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    color: #334155;

    font-size: 14px;

    line-height: 1.5;
}


.auth-bottom a {
    color: #2563eb;

    font-size: 14px;

    font-weight: 750;

    text-decoration: none;
}


/* ========================================
   RIGHT SIDE
======================================== */

.auth-side {
    display: flex;

    align-items: center;

    justify-content: center;

    padding: 80px;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(37, 99, 235, 0.14),
            transparent 55%
        ),
        #f1f5f9;
}


.auth-side-content {
    width: 100%;

    max-width: 560px;
}


/* ========================================
   RIGHT HEADING
======================================== */

.auth-side h2 {
    margin-top: 20px;

    color: #0f172a;

    font-size: clamp(44px, 5vw, 62px);

    line-height: 1.03;

    letter-spacing: -3px;

    font-weight: 800;
}


/* ========================================
   RIGHT DESCRIPTION
======================================== */

.auth-side-content > p {
    max-width: 500px;

    margin-top: 22px;

    color: #1e293b;

    font-size: 19px;

    line-height: 1.65;
}


/* ========================================
   RESUME PREVIEW
======================================== */

.auth-resume-preview {
    max-width: 480px;

    margin-top: 44px;

    padding: 30px;

    border: 1px solid #dbe3ef;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.10);

    transform: rotate(-1deg);
}


/* ========================================
   RESUME TOP
======================================== */

.auth-preview-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.auth-preview-top strong {
    display: block;

    color: #0f172a;

    font-size: 21px;

    line-height: 1.3;
}


.auth-preview-top span {
    display: block;

    margin-top: 6px;

    color: #334155;

    font-size: 14px;

    line-height: 1.4;
}


/* ========================================
   AVATAR
======================================== */

.auth-preview-avatar {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: #eff6ff;

    color: #2563eb;

    font-size: 14px;

    font-weight: 800;
}


/* ========================================
   PREVIEW DIVIDER
======================================== */

.auth-preview-line {
    height: 1px;

    margin: 25px 0;

    background: #e2e8f0;
}


/* ========================================
   PREVIEW CONTENT
======================================== */

.auth-preview-content {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.auth-preview-content span {
    display: block;

    height: 8px;

    border-radius: 5px;

    background: #dbe3ef;
}


.auth-preview-content span:nth-child(1) {
    width: 85%;
}


.auth-preview-content span:nth-child(2) {
    width: 70%;
}


.auth-preview-content span:nth-child(3) {
    width: 90%;
}


.auth-preview-content span:nth-child(4) {
    width: 55%;
}


/* ========================================
   LIVE STATUS
======================================== */

.auth-live {
    display: flex;

    align-items: center;

    gap: 9px;

    width: fit-content;

    margin-top: 24px;

    padding: 8px 11px;

    border-radius: 6px;

    background: #dcfce7;

    color: #15803d;

    font-size: 12px;

    font-weight: 750;

    line-height: 1.4;
}


.auth-live span {
    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #16a34a;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 800px) {

    .auth-page {
        display: block;
    }


    .auth-side {
        display: none;
    }


    .auth-card {
        min-height: 100vh;

        padding: 32px 24px;
    }


    .auth-logo {
        font-size: 26px;
    }


    .auth-content {
        max-width: 520px;
    }


    .auth-content h1 {
        font-size: 48px;

        letter-spacing: -2.5px;
    }


    .auth-content p {
        font-size: 18px;

        line-height: 1.6;
    }


    .auth-label {
        font-size: 13px;
    }


    .auth-note {
        font-size: 13px;
    }


    .auth-bottom {
        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 9px;

        font-size: 13px;
    }


    .auth-bottom a {
        font-size: 13px;
    }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 450px) {

    .auth-card {
        padding: 28px 20px;
    }


    .auth-content h1 {
        font-size: 42px;

        letter-spacing: -2px;
    }


    .auth-content p {
        font-size: 17px;
    }


    .auth-google {
        margin-top: 32px;
    }
}