@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/poppins-regular.woff');
}

*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: rgb(43, 43, 43);
    color: white;
}

.wrapper{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.supCont{
    width: auto;
    height: 50%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.logoCont{
    width: 25%;
    height: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2%;
    margin-bottom: 10%;
}

.logoJxn{
    width: auto;
    height: 100%;
}

.titlesCont{
    width: 100%;
    background-color: white;
    border-radius: 12px;
    padding: 4%;
    color: black;
    text-align: center;
}

.titulo{
    font-size: calc(1rem + ((1vw - 4px) * 1));
    margin-bottom: 10px;
}

.botCont{
    width: auto;
    height: 50%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    z-index: 1;
}

.form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1%;
}

.formChildBtn{
    margin: 4% 0%;
    border-radius: 12px;
    font-size: calc(1rem + ((1vw - 10px) * 1));
    padding: 4% 16%;
    color: white;
    background-color: rgb(11, 147, 226);
    border: unset;
    cursor: pointer;
}

.formChild{
    margin: 4% 0%;
    border-radius: 12px;
    padding: 4%;
    font-size: calc(1rem + ((1vw - 10px) * 1));
}

@media screen and (max-width: 1024px){
    .supCont{
        width: 90%;
    }
    .titlesCont{
        width: 90%;
    }
}

@media screen and (max-width: 1024px) and (orientation: portrait){
    .titulo{
        font-size: calc(1rem + ((2vw - 2px) * 2));
    }
    .subtitulo{
        font-size: calc(1rem + ((2vw - 7px) * 2));
    }
    .formChild{
        font-size: calc(1rem + ((2vw - 6px) * 2));
    }
    .formChildBtn{
        font-size: calc(1rem + ((2vw - 6px) * 2));
    }
}

@media screen and (max-width: 1024px) and (orientation: landscape){
    .supCont{
        width: 50%;
    }
    .logoCont{
        width: 50%;
        height: 50%;
        margin-bottom: 4%;
    }
    .titulo{
        font-size: calc(1rem + ((1vw - 4px) * 2));
    }
    .botCont{
        width: 50%;
        justify-content: center;
    }
    .formChild{
        font-size: calc(1rem + ((1vw - 8px) * 2));
    }
    .formChildBtn{
        font-size: calc(1rem + ((1vw - 8px) * 2));
    }

}