@charset "UTF-8";

body {
    font-family: Arial, Helvetica, sans-serif;
    background-image: linear-gradient(45deg, #012e8b, #2868e9, #fa0505, #485edf);
    background-size: 300% 500%;
    background-attachment: fixed;
    animation: colors 30s ease infinite;

}

.box {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 15px;
    max-width: 900px;
    min-width: 300px;
    margin: auto;
    box-shadow: 4px 8px 16px rgb(251, 246, 246) ;
    
}

fieldset {
    border: 3px solid dodgerblue;
    border-radius: 4;

}

legend{
    border: 1px solid #ff041d;
    padding: 10px;
    text-align: center;
    background-color: #ff041d;
    border-radius: 10px;
    color: white;
    font-size: 18px;


}

.inputbox{
    position: relative;

}
.inputUser {
    background: none;
    border: none;
    border-bottom: 1px solid white;
    outline: none;
    color: rgb(255, 255, 255);
    font-size: 15px;
    width: 100%;
    letter-spacing: 2px;
}

.labelinput {
    position: absolute;
    top: 0px;
    left: 0px;
    pointer-events: none;
    transition: 0.5px;
}
.inputUser:Focus ~ .labelinput, .inputUser:valid ~ .labelinput {
    top: -20px;
    font-size: 12px;
    color: dodgerblue;

}

#data_nascimento{
    border: none;
    padding: 8px;
    border-radius: 10px;
    outline: none;
    font-size: 15px;


}

#submit{
    background-color: #0073ff;
    width: 100%;
    border: none;
    padding: 15px;
    color: white;
    font-size: 15px;
    cursor: pointer;
    border-radius: 12px;




}

#submit:hover {

    background-image: linear-gradient(45deg,#2851A3, #262672);

}

.texto1 {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    
}

.box_Photo {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px;
    box-shadow: 10px, 5px, 5px white;
    border-radius: 20px;
    max-width: 900px;
    min-width: 300px;
    margin: auto;
    box-shadow: 4px 8px 16px rgb(251, 246, 246) ;
}



.photo {
    background-color: #0073ff;
    width: 100%;
    border: none;
    padding: 15px;
    color: white;
    font-size: 15px;
    cursor: pointer;
    border-radius: 12px;
    
}

.box_Photo video {
    width: 100%;
    border-radius: 20px;
    max-width: 900px;
    min-width: 300px;
    margin: auto;
}

.titulo{
    font-size: 20px;

}
.paragrafo{
    font-family: Arial, Helvetica, sans-serif;
    font-size:15px;
    
}
#termos{
    color: white;

}




@keyframes colors {
    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;

    }

    100%{
        background-position:0% 50%;

    }

}