/* ==========================================================
   AUTH PAGE
========================================================== */

.auth-page {

    min-height: 100vh;

    display: grid;
    grid-template-columns: 1fr 520px;

    background: var(--white);

}



/* ==========================================================
   LEFT SIDE
========================================================== */

.auth-left {

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 80px;

    background: var(--gray-50);

    border-right: 1px solid var(--gray-200);

}

.auth-logo {

    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 48px;

    font-size: 24px;
    font-weight: 700;

}

.auth-logo i {

    width: 46px;
    height: 46px;

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

    background: var(--black);

    color: var(--white);

    border-radius: 12px;

    font-size: 20px;

}

.auth-left h1 {

    max-width: 520px;

    margin: 24px 0;

    font-size: 58px;

    line-height: 1.05;

    letter-spacing: -2px;

}

.auth-left p {

    max-width: 520px;

    font-size: 18px;

    margin-bottom: 48px;

}

.auth-preview {

    width: 100%;

    border: 1px solid var(--gray-200);

    border-radius: 24px;

    overflow: hidden;

    background: var(--white);

    box-shadow: var(--shadow-md);

}

.auth-preview img {

    width: 100%;

    display: block;

}



/* ==========================================================
   RIGHT SIDE
========================================================== */

.auth-right {

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

    padding: 40px;

}

.auth-card {

    width: 100%;
    max-width: 420px;

}

.auth-card h2 {

    margin-bottom: 12px;

}

.auth-card>p {

    margin-bottom: 36px;

}



/* ==========================================================
   FORM
========================================================== */

.auth-card form {

    display: flex;
    flex-direction: column;

}

.auth-row {

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

    margin-bottom: 28px;

    font-size: 15px;

}

.auth-row label {

    display: flex;
    align-items: center;

    gap: 10px;

    cursor: pointer;

}

.auth-row input {

    width: 16px;
    height: 16px;

}



/* ==========================================================
   DIVIDER
========================================================== */

.auth-divider {

    position: relative;

    margin: 28px 0;

    text-align: center;

}

.auth-divider::before {

    content: "";

    position: absolute;

    top: 50%;
    left: 0;

    width: 100%;
    height: 1px;

    background: var(--gray-200);

}

.auth-divider span {

    position: relative;

    padding: 0 18px;

    background: var(--white);

    color: var(--gray-500);

    font-size: 14px;

}



/* ==========================================================
   SWITCH
========================================================== */

.auth-switch {

    margin-top: 32px;

    text-align: center;

    font-size: 15px;

}

.auth-switch a {

    font-weight: 600;

    color: var(--black);

}



/* ==========================================================
   GOOGLE BUTTON
========================================================== */

.btn i {

    font-size: 18px;

}



/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1100px) {

    .auth-page {

        grid-template-columns: 1fr;

    }

    .auth-left {

        display: none;

    }

    .auth-right {

        padding: 60px 24px;

    }

}

@media(max-width:768px) {

    .auth-card {

        max-width: 100%;

    }

    .auth-row {

        flex-direction: column;
        align-items: flex-start;
        gap: 18px;

    }

}