.login-page-wrapper {
    margin-top: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80.09px);
    padding: 40px 0;
}

.login-page-wrapper .container {
    width: 80%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    overflow: hidden;
    border-radius: 10px;
    padding: 30px;
}

.login-content {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
}

.login-image-container {
    width: 60%;
    position: relative;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

img.auth-form-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.login-form-container {
    width: 40%;
    background-color: white;
    padding: 20px 30px;
    border-radius: 10px;

    & h1 {
        text-align: center;
        margin-top: 5px;
    }

    & .intro-text {
        text-align: center;
    }
}

@media (max-width: 920px) {
    .login-page-wrapper .container {
        height: 70vh;
    }

    .login-image-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    .login-form-container {
        width: 100%;
        align-self: center;
        padding: 0px;
    }

    .login-content {
        justify-content: center;
        width: 100%;
    } 

    .g_id_signin {
        width: 100%;
    }

    .nsm7Bb-HzV7m-LgbsSe {
        width: 100% !important;
        max-width: none !important;
        min-width: 100% !important;
    }
}