@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-VariableFont_wght.ttf");
}
body{
    margin: 0px;
    width: 100%;
    height: 100%;
}
.secao{
    width: 100%;
    min-height: 100%;
    background-image: url("../img/redirect/background_desktop.png");
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: "Montserrat", sans-serif;
}
.contentSection{
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.left{
    margin-right: 72px;
}
.logo img{
    width: 380px;
    height: 200px;
    object-fit: contain;
}
.title{
    margin-top: 28px;
    font-size: 26px;
    color: white;
    font-weight: 600;
    width: 360px;
    margin-left: 18px;
}
.text{
    margin-top: 4px;
    font-size: 26px;
    color: white;
    width: 360px;
    margin-left: 18px;
}

.right{
    display: flex;
    justify-content: center;
}
.form{
    margin-left: 120px;
    margin-top: 248px;
    width: 380px;
    background-color: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.titleForm{
    margin-top: 32px;
    font-size: 24px;
    color: rgb(255, 68, 91);
    font-weight: 600;
    width: 85%;
}
.textForm{
    width: 85%;
    color: rgb(122, 122, 122);
    font-size: 16px;
}
.selectUF{
    margin-top: 16px;
    width: 85%;
}
.selectUF select{
    width: 100%;
    height: 38px;
    background-color: rgb(223, 223, 223);
    box-sizing: border-box;
    padding: 0px 12px 0px 12px;
    font-size: 18px;
    border: 0px;
    border-radius: 8px;
    color: black !important;
}
.selectUF select:focus{
    outline: none;
}
.btnForm{
    width: 85%;
    margin-top: 12px;
    margin-bottom: 32px;
}
.btnForm button{
    width: 100%;
    height: 32px;
    background-color: rgb(255, 68, 91);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: 0px;
    border-radius: 8px;
    cursor: pointer;
}

@media screen and (max-width: 980px){
    .secao{
        background-image: url("../img/redirect/background_mobile.png");
    }
    .contentSection{
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .left{
        margin: 0px;
        margin-top: 64px;
    }
    .logo img{
        width: 760px;
        height: 480px;
    }
    .title{
        margin-top: 0px;
        width: 680px;
        font-size: 50px;
    }
    .text{
        width: 630px;
        font-size: 50px;
    }

    .form{
        margin: 0px;
        margin-top: 64px;
        width: 720px;
        border-radius: 20px;
        margin-bottom: 128px;
    }
    .titleForm{
        margin-top: 52px;
        font-size: 52px;
    }
    .textForm{
        font-size: 34px;
    }
    .selectUF{
        margin-top: 28px;
    }
    .selectUF select{
        height: 56px;
        font-size: 32px;
        padding: 0px 22px 0px 22px;
    }
    .btnForm{
        margin-top: 24px;
        margin-bottom: 52px;
    }
    .btnForm button{
        height: 58px;
        font-size: 32px;
    }
}