:root{
    --cor-textos: rgb(75, 75, 75);
    --cor-titulos: #5d71a8;
}
body{
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}
button{
    width: 10vw;
    height: 6vh;
    border: none;
    outline: none;
    color: #fff;
    background: linear-gradient(135deg, rgb(255, 64, 223),rgb(195, 106, 255), rgb(126, 57, 255),rgb(130, 108, 255), rgb(67, 34, 255));
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10vh;
    border-color: 0;
    transition: box-shadow 1s;
}
button:last-child{
    background: linear-gradient(135deg, rgb(255, 64, 223),rgb(195, 106, 255), rgb(126, 57, 255),rgb(130, 108, 255), rgb(67, 34, 255));
}
button:hover{
    animation: shadows .7s infinite alternate ease-in-out;
}
button[type="submit"]{
    width: 10vw;
    height: 6vh;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10vh;
}
button[type="submit"]::before{
    content: '';
    background: linear-gradient(135deg,
    rgb(255, 64, 223),
    rgb(195, 106, 255), 
    rgb(126, 57, 255),
    rgb(130, 108, 255));
    position: absolute;
    top: -0.5vh;
    left:-0.5vh;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 1vh);
    height: calc(100% + 1vh);
    animation: glowing 4s ease infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10vh;
}
button[type="submit"]:active{
    color: #000;
}
button[type="submit"]:active:after{
    background: transparent;
}
button[type="submit"]:hover:before{
    opacity: 1;
}


/*input*/
input[type="checkbox"]:checked{
    width: 2vw;
    height: 2vh;
}
input[type="checkbox"]{
    width: 2vw;
    height: 2vh;
    margin-top: 1vh;
}

input[type="text"]:disabled{
    border-color: gray;
    opacity: 25%;
    &:hover{
        border-color: gray;
    }
}

input[type="text"], [type="email"], [type="date"], [type="tel"]{
    border-top: 0vh;
    border-left: 0vh;
    border-right: 0vh;
    border-bottom: 0.3vh;
    transition: border 0.3s ease-in;
    border-color: #4b34cd;
    border-style: solid;
    border-radius: 0.5vh;
    background-color: #00000000;
    color: var(--cor-textos);
    padding: 1vh;
    outline: none;  
    min-height: 1.57vh;
}
input[type="date"]{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-transform: uppercase;
    width:auto;
    min-height: 1.57vh;
    font-size: 2vh;
}
input[type="text"]:hover, [type="email"]:hover, [type="date"]:hover{
    border-top: 0vh;
    border-left: 0vh;
    border-right: 0vh;
    border-bottom: 1vh;
    transition: border 0.5s;
    border-color: #ae96ff;
    border-style: solid;
    background-color: #00000000;
    color: #5d71a8;
    padding: 1vh;
    
    
}
input:invalid{
    border-color: rgb(255, 169, 223);
}
input[type="text"]:focus, [type="email"]:focus, [type="date"]:focus{
    border-top: 0vh;
    border-left: 0vh;
    border-right: 0vh;
    border-bottom: 1vh;
    transition: border 0.3s;
    border-color: #9c7eff;
    border-style: solid;
    background-color: #00000000;
    color: var(--cor-textos);
    padding: 1vh;
}
input[type="month"]{
    background-color: rgba(0, 0, 0, 0.094);
    border: none;
    color: rgb(0, 0, 0);
    outline: none;
    font-size: 1.5vh;
}
label{
    margin-bottom: -0.5vh;
}
hr{
    width: 95%;
    height: 0.38vh;
    background-color: white;
    border: 0;
}
select{
    background: linear-gradient(135deg, rgb(20, 20, 20),rgb(123, 123, 123), rgb(67, 67, 67),rgb(21, 21, 21), rgb(123, 123, 123));
    color: rgb(255, 255, 255);
    outline: none;
    border: 0;
    border-radius: 15vh;
    font-family: Arial, Helvetica, sans-serif;
    width: 5vw;
    height: 3.5vh;
    text-transform: uppercase;
    margin-top: 1vh;
    margin-bottom: 1vh;
    text-align: center;
    font-size: 1.2vh;
}

option{
    background-color: rgb(42, 42, 42);
}

footer{
    text-align: end;
    width: 100%;
    height: auto;
    background-color: #a5b5ff00;
    margin: 0;
    font-size: 2vh;
    color: var(--cor-textos);
}

textarea{
    max-width: 100%;
    min-width: 100%;
    min-height: 50px;
    max-height: 200px;
}

@keyframes shadows {
    0%{
        box-shadow: 0vh 0.0vh 0vh rgb(159, 107, 255)
    }
    100%{
        box-shadow: 0vh 0vh 3vh rgb(159, 107, 255)
    }
}

/*KF*/
@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}

@media (max-width: 786px) {

    body{
        margin: 0;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
    }
    input[type="checkbox"]:checked{
        width: 2vw;
        height: 2vh;
    }
    input[type="checkbox"]{
        width: 2vw;
        height: 2vh;
        margin-top: 1vh;
    }
    
    input[type="text"], [type="email"], [type="date"], [type="tel"]{
        border-top: 0vh;
        border-left: 0vh;
        border-right: 0vh;
        border-bottom: 0.3vh;
        transition: border 0.3s ease-in;
        border-style: solid;
        border-radius: 0.5vh;
        padding-top: 1vh;
        outline: none;  
        min-height: 1.57vh;
    }
    input[type="date"]{
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        text-transform: uppercase;
        width:auto;
        min-height: 3vh;
        font-size: 1.7vh;
        width: 80vw;
    }
    button{
        width: 30dvw;
        height: 5dvh;
        border-radius: 10vh;
        border: none;
        cursor: pointer;
        font-size: 2vh;
        margin-bottom: 2vh;
    }
    button:hover{
        width: 10vw;
        height: 6vh;
        border-radius: 10vh;
        border-width: 0.4vh;
        border-style: solid;
        cursor: pointer;
        transition: border 0.1s linear;
        transition: background 0.5s linear;
        transition: box-shadow 1s ease-in;
    }
    input[type="text"]:hover, [type="email"]:hover, [type="date"]:hover{
        border-top: 0vh;
        border-left: 0vh;
        border-right: 0vh;
        border-bottom: 1vh;
        transition: border 0.5s;
        border-style: solid;
        background-color: #00000000;
        padding: 1vh;
        
        
    }
    input:invalid{
        border-color: rgb(255, 0, 162);
    }
    input[type="text"]:focus, [type="email"]:focus, [type="date"]:focus{
        border-top: 0vh;
        border-left: 0vh;
        border-right: 0vh;
        border-bottom: 1vh;
        transition: border 0.3s;
        border-style: solid;
        padding: 1vh;
    }
    input[type="month"]{
        border: none;
        outline: none;
        font-size: 1.5vh;
    }
    label{
        margin-bottom: -0.5vh;
    }
    hr{
        width: 95%;
        height: 0.38vh;
        border: 0;
    }
    select{
        outline: none;
        border: 0;
        border-radius: 15vh;
        font-family: Arial, Helvetica, sans-serif;
        width: 25vw;
        height: 3.5vh;
        text-transform: uppercase;
        margin-top: 1vh;
        margin-bottom: 1vh;
        text-align: center;
        font-size: 1.3vh;
    }
    footer{
        text-align: end;
        width: auto;
        height: auto;
        transform: translateX(0);
        font-size: 1.5vh;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    }