*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;

}

body{
    background-color: var(--cor1);
    height: 100dvh;
    width: 100dvw;    
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(#FFFF99,#002060);
    overflow: hidden;
    background-repeat: no-repeat;

}
:root{
    --cor0:#002060;
    --cor1:#FFFF99;
    --cor3:#ffffff;
}
.main-conteudo-cadastro{
    background-color: var(--cor0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    border-radius: 30px;
}
.titulo-cadastramento{
    margin-top: 0px;
    width:100%;
    color: var(--cor3);
    font-weight: 700;
    font-size: 18px;
}
.laber-texto{
    color: var(--cor3);
    font-size: 13px;
}
.box-conteudo{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.box-form{
    display: flex;
    flex-direction: column;
    padding: 30px;
    gap: 10px;
}
.input-email{
    display: flex;
    padding: 10px;
    width: 100%;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.logo-header{
    height: 90%;
    width: 30%;
}
.input-texto{
    width: 100%;
    padding: 3px;
    border-radius: 6px;
    border: none;
    font-size: 18px;
}
.input-data{
    width: 48%;
    border: none;
    padding: 5px;
    font-size: 18px;

}

.btn-box{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    
}
.teste{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.btn-link{
    text-decoration: none;
    background-color:var(--cor1);
    color: var(--cor0);
    width: 100%;
    border: none;
    padding: 10px;
    border-radius: 15px;
    background-color:var(--cor1);
    color: var(--cor0);
    font-size: 17px;
    font-weight: 700;
    display: flex;
    justify-content: center;
}
.btn-link:hover{
    background-color: var(--cor3);
    color: var(--cor0);

}
#toggle-password {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 10px;
    padding: 5px;
    
}

#toggle-password img {
    width: 20px;
    height: 20px;
}
.senha-usuario input:focus-visible{
    outline: none;
}

.input-usuario{
    border-radius: 10px;
    border: none;
    width: 300px;
    font-size: 18px;
    background-color: rgb(255, 255, 255);
    padding-top: 7px;
    padding-bottom: 7px;
    
}
.senha-usuario{
    display: flex;
    gap: 5px;
    background-color: var(--cor3);
    margin-top: 10px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}

.input-usuario2{
    border-radius: 10px;
    border: none;
    width: 16.2rem;
    font-size: 18px;
    background-color: rgb(255, 255, 255);
    
}
.inputs{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 10%;
    margin-top: 15px;
    justify-content: center;
    align-items: center;
}
.incone-login{
    height: 25px;
    width: 25px;
}