body{
    font-family: Roboto,sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
    color: #666;
}

header{
    width: 100%;
    padding: 10px 50px;
    box-shadow: 0 1px 2px #0003;
    box-sizing: border-box;
    text-align: center;
}

section{
    max-width: 600px;
    width: 95%;
    margin: 30px auto 0;
}

section form{
    display: flex;
    gap: 25px;
    flex-direction: column;
    box-sizing: border-box;
}

section form > div {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

input[type="text"], input[type="tel"]{
    width: 100%;
    height: 45px;
    padding: 0 16px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #444;
}

#cond span{
    font-size: 12px;
}

#cond a{
    color: #666;
}

.error label, #cond .error, #cond .error a{
    color: #EB2200;
}

button{
    background-color: #00A1DF;
    color: #fff;
    border-color: transparent;
    width: 80%;
    margin: 0 auto;
    height: 50px;
    font-weight: 400;
    font-size: 18px;
    border-radius: 5px;
    margin-bottom: 3rem
}

.selector{
    display: grid;
    gap: 0;
    border: 1px solid #00A1DF;
    padding: 0.25rem;
    border-radius: 1rem;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    text-align: center;

    label{
        cursor: pointer;
        user-select: none;
        padding: 0.6rem;
        border-radius: 1rem;
    }

    label:has(input:checked){        
        background-color: #00A1DF;
        color: #fff;
    }
    
    input[type="radio"], input[type="checkbox"]{
        display: none;
    }
}

#btnInstalar{
    display: none; 
    padding: 10px; 
    cursor: pointer;
    max-width: 500px;
}