/*Write your custom css in this file.*/
:root {
    --rdo-bg-gray: #f8f6f6;
    --rdo-bg-white: #ffffff;
}


* {
    margin: 0;
    padding: 0;
}

html, body {
    position: relative;
    width: 100%;
    font-size: 10pt;
    height: 100%;
    background-color: var(--rdo-bg-gray);
}

.form-side {
    background-color: var(--rdo-bg-gray);

}

.logo-side {
    background-color: var(--rdo-bg-white);
}

@media (width <=575px) {
    
    .form-side {
        position: relative;
        background-color: var(--rdo-bg-white);
    }

    .logo-side {
        position: relative;
        display: inline-grid;
        height: 200px;

        >img {
            margin: 0 auto;
            width: 100dvw;
        }
    }

}

@media (width < 992px) {
    .form-side {
        background-color: var(--rdo-bg-white);
    }


}