
/*========== Fonts ==========*/
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;1,100;1,200;1,300;1,400&family=Staatliches&display=swap');

/*===== VARIABLES CSS =====*/
:root {
	--header-height: 3rem;

    /*========== Colors ==========*/
	--gelo:#E5E5E5;
	--azul: #8a7eb8;
	--preto: #000000;
	--branco: #ffffff;
    --rosa: #FF5374;
    --grafite: #535971;
    --cinza: #FAFAFC;

    /*========== Fonts ==========*/
    --fonte-poppins: 'Poppins';
    --fonte-Staatliches: 'Staatliches';
}

/*========== gerais ==========*/
body{
    background-color: var(--gelo);
    min-height: 100vh;
    min-width: 100vw;
    font-weight: 400;
    overflow-x: hidden;
}
    
/*========== header ==========*/
.cabecalho{
    display: flex;
    background-color: var(--grafite);
    min-height: 52vh;
    width: 100vw;
}

.cabecalho div{
    display: flex;
    transform: translateY(-3vh);
    width: 750px;
    margin: auto;
    padding-bottom: 50px;
    flex-direction: column;
    align-items: flex-start;
}

.cabecalho h1{
    font-family: var(--fonte-Staatliches);
    color: var(--branco);
    font-size: 48px;
}

.cabecalho p{
    font-family: var(--fonte-poppins);
    width: 60%;
    color: var(--branco);
    font-weight: 300;
    padding-top:20px;
    font-size: 20px;
    line-height: 1.5em;
}

/*========== Form ==========*/
.form{
    background-color: var(--branco);
    width: 750px;
    margin: auto;
    Height: 1184px;
    margin-top: -15vh;
    margin-bottom: 23vh;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
}

section form{
    height: 100%;
    position: relative;

}

.titulo-sec{
    font-family: var(--fonte-Staatliches);
    font-size: 25px;
    font-weight: 400;
    width: 100%;
    margin-bottom: 20px;
    color: var(--grafite);
    height: 5vh;
    border-bottom: 1px solid var(--gelo);
    padding-bottom: 1px;
    margin-top: 50px;
}

.inputBox{
    width: 622px;
    height: max-content;    
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.inputBox input{
    display: inline-block;
    border: 1px solid var(--gelo);
    width: 100%;
    height: 7vh;
    border-radius: 10px;
    background-color: var(--cinza);
    margin-top: 7px;
    box-sizing: border-box;
}

.inputBox label{
    font-family: var(--fonte-poppins);
    font-size: 14px;
    display: flex;
    font-weight: 400;
    line-height: 24px;
    margin-top: 10px;
}

.info-dados{
    width: 48%;
}

.info-email, .info-senha, .info-mentor{
   width: 100%;
}

.wrapper-date {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.text-date{
    font-style: normal;
    font-family: var(--fonte-Staatliches);
    font-weight: 400;
    font-size: 20px;
    color: var(--grafite);
    line-height: 34px;
    margin-top: 20px;
}

.info-data{
    width: 70%;
}

.info-hora{
    width: 25%;
    margin-left: 15px;
}

.info-hora input{
    width: 100%;
    height: 7vh;
    border-radius: 10px;
    background-color: var(--cinza);
    margin-top: 7px;
    box-sizing: border-box;
}

.info-data input{
    width: 90%;
    height: 7vh;
    border-radius: 10px;
    background-color: var(--cinza);
    margin-top: 7px;
    box-sizing: border-box;
}

input[type="submit"]{
    border: none;
    outline: none;
    background: var(--rosa);
    cursor: pointer;
    height: 55px;
    border-radius: 23px;
    font-weight: 400;
    width: 608px;
    color: var(--branco);
    font-family: var(--fonte-Staatliches);
    font-size: 22px;
    margin: auto;
}
    

input[type="submit"]:active {
	opacity: 0.8;
}

div.div-button{
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0px 0px 30px 30px;
    background-color: var(--grafite);
    height: 150px;
    width: 750px;
    position:absolute;
    bottom: 0px;
}



