html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.authentication-wrapper {
    width: 100vw !important;
    min-height: 100vh !important;
    overflow: hidden;
}

.authentication-inner {
    width: 100% !important;
    min-height: 100vh !important;

    display: flex !important;
    flex-wrap: nowrap !important;

    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
}

.custom-left-side {
    width: 65%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;
}

.custom-right-side {
    width: 35%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 60px;
}

.auth-form-wrapper {
    width: 100% !important;
    max-width: 480px !important;
}

.card-glass {
    width: 100%;
}

.auth-illustration {
    width: 100%;
    text-align: center;
}

.auth-illustration img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
}

@media (max-width: 991px) {

    .custom-left-side {
        display: none !important;
    }

    .custom-right-side {
        width: 100%;
        padding: 30px;
    }

}