.body__main__container{
    display: flex;
    gap: 3rem;

    background-image: url('../../public/imgs/bg.jpg');
    background-size: cover;
    height: 100vh;

    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.body__main__right{
    width: 45vw;
    background-color: #FFF;
    height: fit-content;
    padding: 0 3rem;

    height: 100vh;

    display: flex;
    align-items: center;

    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.forms__title{
    font-size: 2.2rem;
    line-height: 100%;
    color: #064f82;
    text-align: center;
}

.forms__subtitle{
    color: #00a8e1;
    text-align: center;
    font-weight: 700;
}

.body__form__inputs__submit{
    cursor: pointer;
    transition: .3s all;
}

.body__main__left{
    padding-top: 15vh;
}

.body__form__imagLogo{
    width: auto;
    height: 3rem;
    text-align: center;
    margin: 0 auto;
    margin-top: 2.75rem;
}

.error-message{
    margin-top: 4px !important;
    color: #d10000;
    font-size: .8rem;
    font-weight: 700;
}

/* THANKS PAGE */
.thanks__body{
    padding: 0 !important;
    margin: 0 !important;
}
.thanks__container{
    width: 100vw;
    height: 100vh;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
box-sizing: border-box;
    background-color: #1C99D5;
    color: white;
    font-family: 'Montserrat';
}
.thanks__image{
    width: auto;
    height: 40vh;
}
.thanks__title{
    font-size: 4rem;
    text-transform: uppercase;
    margin-top: 3rem;
    margin-bottom: 0;
}
.thanks__subtitle{
    font-weight: 400;
}
.thanks__button{
    margin-top: 2rem;
    text-decoration: none;
    font-size: 1.25rem;
    color: white !important; 
    background-color: #0E85BE;
    border-radius: 4px;
    border: solid 1px #FFF;
    padding: 4px 8px;
    transition: .3s all;
}
.thanks__button:hover{
    background-color: #c1c1c1;
}
.mobile__button{
    display: none;
    
    position: absolute;
    font-size: 1.2rem;
    top: 63vh;
    text-align: center;
    margin: 0 2rem;
    width: fit-content;
    width: -moz-fit-content;

    line-height: 120%;
    text-transform: uppercase;
}
/*  1 rem = 16px */
/* MOBILE DEVICES */
@media screen and (max-width: 400px) {
    .body__main__right, .body__main__container{
        height: 120vh;
        
    }
    .mobile__button{
        display: block;
    }
}
@media screen and (max-width: 460px) {

    html {
        font-size: 20px;
    }

    .body__main__container{
        width: 100vw;
        height: 160vh;
        background-image: url('../../public/imgs/bg-mobo.png');
        background-size: 100%;
    }
    .body__main__left{
        /* position: fixed;
        width: 100vw;
        height: 100vh;
        z-index: -1; */
        /* display: none; */
        background: red;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 60vh;

        background-image: url('../../public/imgs/BG-MOBO-TOPO.png');
        background-position: top;
        background-size: cover;
    }
    .body__main__right{
        width: 100vw;
        min-height: 100vh;
        box-sizing: border-box;
        padding: 0 1rem;
        position: absolute;
        top: 60vh;

        
        /* 75% TRANSPARENCY */
        background-color: #FFFFFFBF;
    }
    .mobile__button{
        display: block;
    }
}