*{
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
}

body{
height: 100vh;
overflow: hidden;
}

header{
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    background-color: #ffff;
    box-shadow: 0 0 40px;
    z-index: 1;
}

.icon:hover{
    background-color: rgba(128, 128, 128, 0.308);
    border-radius: 12px;
    cursor: pointer;
}

.icon-filters{
    position: absolute;
    left: 20px;
    }
    
.logo-empresa{
    width: 90px;
    height: 90px;
    padding: 10px;
}

.container-input{
    position: relative;
    width: 400px;
    height: 30px;
    border: 2px solid black;
    border-radius: 15px;
    padding: 5px;
}
.container-input input{
    border: none;
    outline: none;
    position: absolute;
    padding-left: 8px;
    border-radius: 12px;
    right: 0;
    left: 0;
}

.container-input .input-iconSearch{
    position: absolute;
    right: 6px;
    top:3px;
}

nav ul{
    display: flex;
    align-items: center;
    gap: 10px;
}
nav ul li{
    list-style: none;
}


.select-buttons{
    display: none;
}
.select-button{
    border: none;
    padding: 5px;
    background-color: #0070f3;
    color: #ffff;
    border-radius: 20px;
}
@media (min-width:1400px) {
    body{
        overflow: hidden;
    }
    main{
    display: flex;
    background-color: gray;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    padding:500px 0 500px 0 ;
    overflow: auto;
}
}



main{
    display: flex;
    background-color: gray;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    padding:500px 0 500px 0 ;
    overflow: auto;
}
.container-formulario{
    width:1000px;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    position: relative;
    background-color: #f0ecec;
    padding: 30px;
    margin-top: 100px;
    overflow: auto;

}
.formulario-titulo{
    font-size: 25px;
    margin-bottom: 30px;
    text-align: center
}
.formulario-resposta{
    margin-top: 10px;
    font-size:15px;
}
.formulario-container-inputs{
    display: flex;
    flex-direction: column;
}
label{
    display: block;
    margin-left: 5px;
}

.formulario-input{
 width: 100%;
    height: 30px;
    border: 2px solid black;
    border-radius: 15px;
    padding-left:10px ;
    margin-top: 2px;
    margin-bottom:20px ;
}
.formulario-textarea {
    width: 100%;
    height: 100px;
    padding-top: 10px;
    border: 2px solid black;
    border-radius: 15px;
    padding-left:10px ;
    margin-top: 2px;
    margin-bottom:20px ;
    resize: none;
}
.formulario-btn { 
    display: inline;
    border: none;
    width: 150px;
    height: 40px;
    background-color: #0070f3;
    color: #ffff;
    border-radius: 20px;
    font-size: 15px;
}

 .formulario-btnCancel{
    background-color: red;
}  
.formulario-btnDelete{
    background-color: rgb(187, 45, 45);

}

.formulario-btnAltere{
    background-color: rgb(240, 187, 43);
}
