*{
    margin: 0;
    box-sizing: border-box;
}


#t1{
    height: 100vh;
    width: 100%;
    background-color: #c65252;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cadastro{
    height: 80vh;
    width: 100%;
    padding: 2%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.cadastro label{
    font-size: 50px;
    color: #893939;
    font-weight: bold;
    margin-bottom: 2%;
    text-shadow: 1px 1px 2px black;
}

.cadastro label:hover{
    color: white;
    font-size: 60px;
    transition: 0.3s;
    cursor: pointer;
}

.meio{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 2%;
    background-color: #893939;
    height: 80vh;
    width: 60vh;
    border-radius: 6%;


}

.meio:hover{
    box-shadow: 0 0 1px 2px #893939;
    transition: 0.3s;
}

.meio input{
    padding: 1%;
    font-size: 13px;
}

.meio input:hover{
    border: 2px solid white;
    font-size: 15px;
    transition: 0.3s;
}

.botao{
    background-color: #893939 ;
    color: white;
    border-radius: 10%;
    display: flex;
    justify-content: center;
    margin-top: 2%;
    padding: 1%;
    text-decoration: none;
}

.botao:hover{
    background-color: white;
    color: #893939;
    transition: 0.3s;
    cursor: pointer;
    box-shadow:  0 0 1px 1px black;

}
