* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* remover a cor do fundo quando o campo for auto completado */
input:-webkit-autofill {
    -webkit-background-clip: text;
}

#id_username, #id_email, #id_password {
     width: 75%;
}

.grid {
    display: grid;
    grid-template-columns: 100%;
}

#formulario_cadastro {
    padding-left: 10%;
    padding-top: 3%;
    font-family: Arial, Helvetica, sans-serif;
}

.outline-bottom {
    transition: box-shadow 0.3s ease-in-out;
}

.outline-bottom:focus {
    outline: none;
    box-shadow: 0px 5px .25rem rgba(13,110,253,.25);
}

label {
    display: block;
}

.divselect {
    width: 30%;
    position: relative;
    width: 8em;
}

.divselect:after {
    content: '˅';
    font-weight: bold;
    color: #0062ff;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 5% 0% 5% 3%;
}

.custom_select {
    appearance: none;
    width: 100%;
    padding: 5% 0% 5% 3%;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    background: none;
}

input:focus {
    outline: none;
}

#termos-e-privacidade {
    margin-top: 20px;
    margin-bottom: 30px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
}

#termos-e-privacidade a {
    text-decoration: none;
    color: rgba(0, 0, 255, 0.8);
}

#formulario_cadastro div {
    margin-top: 3em;
}

@media (min-width: 600px){
    #id_username, #id_email, #id_password {
        width: 65%;
    }
    
}

@media (min-width: 800px){
    .grid {
        grid-template-columns: 60% 40%;
    }

}

#oi {
    background-color: red;
}
