*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat';
}

section{
    background-color: #ADE1FF;
    padding: 20px;
    display: flex;
    justify-content: center;
    font-family: 'Montserrat';
}

#formularios{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

#descricao{
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 40px;
    padding-top: 30px;
    width: 580px;
    text-align: justify;
    gap: 25px;
    border-radius: 0.5rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#logo-topo{
    display: flex;
    align-items: center;
    gap: 12px;
    width: 190px;
}

#logo-topo img{
    width: 50px;
}

#logo-topo p{
    font-family: 'Montserrat';
    font-size: 13.5px;
    font-weight: 800;
    color: #1535b5ce;
}

#descricao h1{
    align-self: center;
    font-size: 27px;
    font-weight: 600;
}

.caixas{
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: white;
    width: 580px;
    padding: 40px;
    border-radius: 0.5rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.caixas h2{
    font-size: 17px;
    font-weight: 550;
}

.div-maior-input-radio{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.div-menor-input-radio{
    display: flex;
    align-items: center;
}

.list-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-button {
    padding: 6px 10px;
    border-radius: 50px;
    border: 3px solid rgb(161, 161, 161);
    color: rgb(161, 161, 161);
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 20px;
}

.info-button i {
    color: rgb(161, 161, 161);
}

.caixas div input{
    width: 40px;
    margin-bottom: 20px;
}

.fa-question-container {
    background-color: #1535B5;
    padding: 4px;
    border-radius: 100%;
    width: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fa-question {
    color: white;
    font-size: 16px;
}

.bloco-explicacao {
    padding: 6px;
    background-color: #00000022;
}

.container-residente {
    display: flex;
    justify-content: space-between;
    position: relative;
   
    input, select {
        width: 100% !important;
    }

    .container-residente-nome {
        width: 60%;
    }

    .container-residente-perfil {
        width: 30%;
    }

    .fa-solid {
        color: #1535B5;
        font-size: 20px;
        cursor: pointer;
        position: absolute;
        right: -37px;
        top: 0px;
        padding: 10px;
    }
}

.container-responsavel {
    position: relative;
    
    .container-responsavel-nome {
        width: 100%;
        input, select {
            width: 560px !important;
        }
    }
    .container-responsavel-sublinha {
        width: calc(100% - 19.6px);
        display: flex;
        justify-content: space-between;

        input, select {
            width: 100% !important;
        }

        .container-responsavel-relacao {
            width: 25%;
        }

        .container-responsavel-contato {
            width: 65%;
        }
    }

    .fa-solid {
        color: #1535B5;
        font-size: 20px;
        cursor: pointer;
        position: absolute;
        right: -37px;
        top: 25%;
        padding: 10px;
    }

    hr {
        margin: 8px 0;
    }
}

#nome-escola{
    width: 97%;
    margin: 10px 0;
}

input{
    width: 560px;
    background-color: rgb(237, 237, 237);
    height: 23px;
    padding: 8px;
    border: 2px solid rgb(195, 195, 195);
    border-radius: 0.2rem;
    align-self: center;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.781);
    font-family: 'Montserrat';
    font-weight: 500;
}

select{
    width: 580px;
    background-color: rgb(237, 237, 237);
    padding: 8px;
    border: 2px solid rgb(195, 195, 195);
    border-radius: 0.2rem;
    align-self: center;
    font-size: 16px;
    font-family: 'Montserrat';
    font-weight: 500;
}

.radio {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.radio input[type="radio"] {
    display: none;
}

.radio label {
    padding: 6px 16px;
    border: 2px solid #a0a0a0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: #a0a0a0;
    user-select: none;
    font-weight: 500;
}

.radio input[type="radio"]:checked + label {
    background-color: #1535B5;
    border: 2px solid #1535B5;
    color: white;
}

textarea{
    width: 560px;
    background-color: rgb(237, 237, 237);
    height: 120px;
    padding: 8px;
    border: 2px solid rgb(195, 195, 195);
    border-radius: 0.2rem;
    align-self: center;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.781);
    font-family: 'Montserrat';
    font-weight: 500;
    resize: none;
}

button{
    width: 200px;
    height: 45px;
    background-color: #1535B5;
    font-family: "Montserrat";
    color: white;
    font-weight: 600;
    font-size: 17px;
    border: none;
    border-radius: 0.3rem;
    cursor: pointer;
    transition: all 0.2s;
}

button:hover{
    background-color: #142e96;
}

#adicionar-responsavel {
    width: 230px;
}

@media (max-width: 768px) {
    section{
        width: 90%;
    }
    #formularios{
        width: 100%;
    }
    #descricao{
        width: 80%;
    }
    .caixas{
        width: 80%;
    }
    input{
        width: 100%;
    }
    select{
        width: 100%;
    }
    textarea{
        width: 100%;
    }
    .container-responsavel-nome {
        input[type=text], select {
            width: calc(100% - 19.6px) !important;
        }
    }
}