.auth-form-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-form-container .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 40px 30px;
    /* box-shadow: 0 0 #0000, 0 0 #0000, 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); */
    gap: 40px;
    
}

.auth-form-container {
    h1 {
        font-size: clamp(32px, 5.5vw, 56px);
        line-height: clamp(44px, 6.5vw, 67px);
        text-align: center;
    }

    /* .auth-form {
        overflow-y: scroll;
    } */

    .auth-form h1 {
        margin-bottom: 20px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .form-group {
        margin-bottom: 25px;
    }

    input {
        color: var(--black);
    }

    .password-input-con {
        position: relative;

        span {
            display: inline-block;
            position: absolute;
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            cursor: pointer;

            svg {
                width: 18px;
                height: 18px;
                stroke: var(--text);
            }
        }
    }

    .check-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;

        .checkbox-wrap {
            display: flex;
            gap: 8px;
            align-items: center;

            .checkboxInput {
                background: transparent;
                cursor: pointer;
                outline: 0;
                width: 24px;
                height: 24px;
                min-width: 24px;
                background-color: var(--white);
                transition: all 0.3s ease;
                border-radius: 0;
                accent-color: var(--white);
            }

            .checkboxInput:checked {
                background-color: var(--black);
                accent-color: var(--black);
                -webkit-appearance: checkbox;
            }

            .checkboxInput:focus {
                box-shadow: unset;
            }

            a {
                color: var(--primary);
            }
        }
    }

    .forgot-password {
        color: var(--black);
        transition: 0.4s ease-in-out;
    }

    .forgot-password:hover {
        color: var(--primary);
    }


    .account-check {
        margin-top: 10px;

        a {
            color: var(--primary);
        }
    }

    /* Divider */
    .divider {
        display: flex;
        align-items: center;
        text-align: center;
        margin: 20px 0;
        color: var(--text-color);
        font-size: 14px;
    }

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid var(--line);
    }

    .divider span {
        padding: 0 16px;
    }

    /* Social Buttons */
    .auth-social-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }

    .auth-social-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 20px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background-color: var(--white);
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: "Afacad", sans-serif;
    }

    .auth-social-btn:hover {
        border-color: var(--text);
    }

    .auth-social-btn svg {
        width: 20px;
        height: 20px;
    }

    /* Submit Button */
    .submit-btn {
        width: 100%;
        padding: 18px;
        background-color: var(--black);
        color: var(--white);
        border: none;
        border-radius: 999px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        font-family: "Afacad", sans-serif;
        transition: background-color 0.3s ease;
    }

    .submit-btn:hover {
        background-color: var(--primary);
    }

    .auth-btn {
        width: 100%;
    }

    .auth-welcome {
        overflow: hidden;
        border-radius: 10px;
        position: relative;

        img {
            width: 100%;
            height: 100%;
        }

        .auth-img-overlay {
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
            color: var(--white);
            padding: 15px;
            position: absolute;
            top: 0;
            left: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;

            h1 {
                color: var(--white);
            }

            p {
                font-size: 22px;
                font-style: italic;
                max-width: 400px;
            }
        }
    }
}

@media (max-width: 1199px) {
    .auth-form-container .container {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }

    .auth-form-container {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)), url("../images/others/contact-information.jpg") center/cover;
        /* background-position: ; */
        color: var(--white);
        h1 {
            color: var(--white);
        }

        .auth-welcome {
            display: none;
        }

        .forgot-password,
        .divider {
            color: var(--white);
        }
    }
}

@media (max-width: 600px) {
    .auth-form-container {
        height: auto;
        min-height: 100vh;

        .form-row {
            grid-template-columns: 1fr;
            gap: 0;
        }

        .check-bottom {
            flex-wrap: wrap;
            row-gap: 10px;

            .checkbox-wrap {
                width: 100%;
            }
        }

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