:root{
    --color-primary: #00e5ff;
    --color-secondary: #0de7ff;
}
body{
    background: #0e1115;
    padding: 66px 20px;
    min-height: 100vh;
}
body#cadastro{
    display: block;
}
main{
    border-radius: 10px;
    width: 100%;
    max-width: 425px;
    color: #f5f7fa;
    margin: 0 auto;
}
body#cadastro main{
    margin: 0 auto;
    max-width: 800px;
}
main > div{
    /*padding: 35px;*/
    margin: 10px 0 35px;
    width: 100%;
}
main > form{
    padding: 35px;
    background: #0c1e27;
    color: #f5f7fa;
    margin: 0;
    width: 100%;
    border-radius: 10px;
}

img{
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
    margin-bottom: 20px;
    display: block;
}
form > div{
    text-align: center;
    margin-bottom: 35px;
}
form h1{
    font-weight: normal;
}
form span, form small{
    color: #f5f7fa;
}
form .reenviar{
    color: #6c6c6c;
}
form > label,
form > label input,
form button{
    width: 100%;
}
form > label{
    background: #09161c;
    border: 1px solid #09161c;
    border-radius: 7px;
    display: flex;
    align-items: center;
    height: 44px;
    overflow: hidden;
    margin-bottom: 25px;
}
form > label svg{
    fill: #f5f7fa;
    margin: 0 14px;
    min-width: 17px;
}
form > label input{
    color: #f5f7fa;
    background: none;
    outline: none !important;
    border: 0;
    height: 100%;
}
form > label input::placeholder{
    color: #f5f7fa;
}
form > label > button{
    background: 0;
    border: 0;
    width: auto;
    padding: 5px 0;
}
form > button{
    margin-top: 20px;
    background: linear-gradient(to left,var(--color-primary),var(--color-secondary));
    border: 0;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    color: #0e1116;
    font-weight: 700;
}
form > a{
    background: transparent;
    border: 0;
    outline: 1px solid var(--color-primary);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    color: var(--color-primary);
    display: block;
    text-decoration: none;
}
form > small{
    display: block;
    text-align: center;
    margin-top: 3px;
    margin-bottom: 3px;
    position: relative;
    margin: 20px 0;
}
form > small:before{
    content: '';
    background: #434343;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
}
form > small span{
    background: #1e1e21;
    z-index: 2;
    position: relative;
    padding: 0 10px;
}

input[type="checkbox"]{
    width: 15px !important;
    height: 15px !important;
    margin-top: 0.2em;
    vertical-align: top;
    background-color: #3e3e3e !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid var(--color-primary) !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    print-color-adjust: exact;
    border-radius: 0.25em;
}
input[type="checkbox"]:checked{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23f5f7fa' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
    /*background-color: var(--color-primary) !important;*/
    border-color: var(--color-primary) !important;
}
@media(max-width: 768px){
    main{
        flex-wrap: wrap;
    }
    main > form{
        width: 100%;
        min-width: 0;
    }
}