.border-none {
    border: none;
    outline: none;
}
form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 25px;
}
.input {
    width: 100%;
    height: 40px;
    background-color: #f7f7f7;
    outline: 1px solid #e7e7e7;
    padding-left: 20px;
    margin-top: 20px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
}
.dropdown {
    width: 100%;
    max-height: 300px;
    background-color: #fff;
    padding: 5px 0;
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    display: none;
    position: absolute; 
    top: 45px;
    left: 0;
    z-index: 999;
    overflow-y: auto;
}
.dropdown .item {
    width: 100%;
    height: 35px;
    font-size: 13.33px;
    padding-left: 12.5px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}
.item:hover {
    background-color: #f7f7f7;
}
.input:hover {
    background-color: #e7e7e7;
}
.input .label {
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 3px;
}
.input input, .input textarea {
    width: 100%;
    background-color: transparent;
    font-family: Arial;
    font-size: 14.5px;
    padding-right: 12.5px;
    border: none;
    outline: none;
}
.input .icon {
    position: absolute;
    right: 12.5px;
}
button[type="submit"]:not(.swal2-confirm):not(.swal2-cancel), 
.btn-send:not(.swal2-confirm):not(.swal2-cancel) {
    height: 40px;
    color: #fff;
    background-color: #1f8a70;
    font-size: 14.33px;
    font-weight: 600;
    margin-left: auto;
    margin-top: 15px;
    margin-bottom: 25px;
    padding: 0 20px;
    gap: 10px;
    border: none;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
button[type="button"] {
    height: 40px;
    color: #fff;
    background-color: #1f8a70;
    font-size: 14.33px;
    font-weight: 600;
    margin-left: auto;
    margin-top: 15px;
    margin-bottom: 25px;
    padding: 0 20px;
    gap: 10px;
    border: none;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-send:hover {
    background-color: #176a56;
}
.attach-file {
    flex-direction: row; 
    align-items: center; 
    justify-content: center; 
    padding: 0; 
    width: 48.75%; 
    font-size: 14.5px;
    font-weight: bold;
    border: 3px dotted #ccc;
}
.false{
    background-color: #ccc;
    width:30px;
    height:23px;
    border-radius:20px;
    padding: 6px;
    display: flex;
    justify-content: left;
    align-items: center;
}
.true {
    background-color: green;
    width:30px;
    height:23px;
    border-radius:20px;
    padding: 6px;
    display: flex;
    justify-content: right;
    align-items: center;
}
.circle {
    background-color: #fff;
    width:12px;
    height: 12px;
    border-radius: 50%;
}
.liAnexos {
    width: 100%;
    background-color: #E9F4FF;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 15.25px;
    position: relative;
    border: 1px solid #C6DAEF;
    margin-top: 3.5px;
}
.liAnexos .icon {
    position: absolute;
    right: 10px;
    cursor: pointer;
}
.liAnexos .file-download {
    position: absolute;
    right: 45px;
    cursor: pointer;
    color: #000;
}
#filesDiv {
    width: 100%; 
    display: none; 
    flex-wrap: wrap;
}
#listaAnexos {
    width: 100%; 
    list-style-type: none;
}
.directory {
    background-color: #f7f7f7; 
    border: 1px solid #ccc; 
    cursor: pointer;
}
input {
    background-color: #f7f7f7;
}
/* Remove the arrows/spinners from input type number */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-simple {
    height: 40px;
    padding: 0 20px;
    gap: 10px;
    border-radius: 20px;
    outline: 1px solid #e7e7e7;
    display: flex;
    align-items: center;
}

.btn-simple .materials-symbols-rounded {
    font-size: 22px;
}

.btn-simple .text {
    font-size: 14.33px;
}

.btn-simple:hover {
    background-color: #f7f7f7;
}
input[type="checkbox"] {
    height: auto;
    cursor: pointer;
}

/* =========================================================
   MOBILE (≤ 767 px): uma coluna, 100% de largura
   ========================================================= */
@media (max-width: 767px) {

    /* empilha os campos */
    form {
        flex-direction: column;
        flex-wrap: nowrap;     /* evita quebras estranhas */
        row-gap: 15px;         /* espaço vertical entre inputs */
    }

    /* força 100% de largura nos elementos de formulário */
    .input,
    .attach-file {
        width: 100% !important;
    }

    /* centraliza botões e remove o empurrão para a direita */
    button[type="submit"]:not(.swal2-confirm):not(.swal2-cancel),
    button[type="button"] {
        margin-left: 0;
    }

    /* mantém a lista de anexos em coluna única se exibida */
    #filesDiv {
        flex-direction: column;
    }
}
