:root{
    --color-bg: #43b0f11f;
}
body{
    background: var(--color-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 100vh;
}
main{
    background: #43b0f1;
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
main > div{
    padding: 35px;
    width: 100%;
}
main > form{
    padding: 35px;
    background: #ffffff;
    margin: 0;
    min-width: 425px;
}

img{
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
    filter: brightness(10);
}
form > div{
    text-align: center;
    margin-bottom: 35px;
}
form h1{
    font-weight: normal;
}
form span{
    color: #6c6c6c;
}
form .reenviar{
    color: #6c6c6c;
}
form > label,
form > label input,
form button{
    width: 100%;
}
form > label{
    border: 1px solid #6c6c6c;
    border-radius: 7px;
    display: flex;
    align-items: center;
    height: 44px;
    overflow: hidden;
    margin-bottom: 25px;
}
form > label svg{
    fill: #43b0f1;
    margin: 0 14px;
}
form > label input{
    color: #67738e;
    background: none;
    outline: none !important;
    border: 0;
    height: 100%;
}
form > label input::placeholder{
    color: #67738e;
}
form button{
    margin-top: 20px;
    background: #43b0f1;
    border: 0;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
}
form > a{
    background: transparent;
    border: 0;
    outline: 1px solid #43b0f1;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    color: #43b0f1;
    display: block;
    text-decoration: none;
}
form > small{
    display: block;
    text-align: center;
    margin-top: 3px;
    margin-bottom: 3px;
}

input[type="checkbox"]{
    width: 15px !important;
    height: 15px !important;
    margin-top: 0.2em;
    vertical-align: top;
    background-color: #fff !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #43b0f1 !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='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
    background-color: #43b0f1 !important;
    border-color: #43b0f1 !important;
}
@media(max-width: 768px){
    main{
        flex-wrap: wrap;
    }
    main > form{
        width: 100%;
        min-width: 0;
    }
}