main{
    display: flex;
    flex-direction: column;
    width: 95%;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: auto;

}
a{
    text-decoration: none;
    color: rgb(55, 140, 196)
}

.uif-header{
    display: flex;
    flex-direction: column;
   
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.uif-header img{
    width: 100%;
    
    align-items: center;    
}

.uif-header h2{
    color: var(--colorPrimario);
    font-size: 3rem;
}

.uif-description{
    display: flex;
    flex-direction: column;
    width: 80%;
}

.uif-description h2{
    color: var(--colorPrimario);
    font-size: 2rem;
}

.uif-description p{
    color: #000;
    text-align: start;
    font-size: 1.1rem;
    margin-bottom: 0;
  
}
.uif-formularios{
width: 50%;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
border: 1px solid red;
padding: 1em;
margin: 1em;
}

.uif-formularios h2{
    color: var(--colorPrimario);
    font-size: 2rem;
}
.uif-formularios li{
    padding:1em;
}
.uif-table{
    width: 70%;
}
.uif-table table{
    border-collapse: collapse;
    width: 100%; 
    padding: 1em;
}
.uif-table table tr th{
    background-color: #303030;
    color: #eee;
     border-right: 1px solid #525252;
}

.uif-table table tr th:nth-last-child(1){
    border: 1px solid #303030;
   
}

.uif-table table th,td{
    border: 1px solid #303030;
    padding: .2em;
    text-align: center;

}

.uif-table table td a {
    display: flex;
    
    width: 100%;
    justify-content: center;
}
.uif-table table td a img{
    width: 40px;
    object-fit: scale-down;
}
.uif-table table tbody tr{
    transition: .35s all;
}
.uif-table table tbody tr:hover{
    background-color: #dfd3d3;
}

.uif-form{
    margin-bottom: 2em;
}

.uif-form form{
    display: flex;
    flex-direction: column;
    gap: 1em;
    background-color: var(--colorPrimario);
    padding: 1em;
    align-items: center;
}
.uif-form h2{
    color: #fff;
}

.uif-form-elemnts{
    display: flex;
   flex-direction: row;
   gap: 1em;
   width: 100%;
}

.uif-form-elemnts input, select, textarea{
    width: 100%;
    padding: 10px;
    border: none;
}
.uif-form span,label{
    display: flex;
    flex-direction: row;
    padding: 1px;
    color: #fff;

    
}
.uif-form-elemnts span{
    flex-direction: column;
    width: 100%;
}

.uif-form-elemnts textarea{
    width: 100%;
    resize: vertical;
}

.uif-form button{
    border: 1px solid;
}

.uif-form-elemnts .errorForms{
    border: 1px solid rgb(255, 255, 255)  ;
    outline: 1px double rgb(255, 255, 255) ;
    background-color: #dadada;
    color: rgb(0, 0, 0);
   
}

.uif-form-elemnts .validForms{
    border: 1px solid rgb(111, 255, 111) ;
    outline: 1px solid rgb(111, 255, 111);
  }




@media only screen and (max-width: 750px) {
        main{
            width: 95%;
        
        }

        
        .uif-header{
            width: 100%;
        }
        .uif-header h2{
            font-size: 1.3rem;
        }
        .uif-header h3{
            font-size: 1rem;
        }
        .uif-description{
            width: 95%;
        }
        .uif-description p{
            font-size: 1rem;
            margin: 0;
            padding: 0;
            
        }
        .uif-description h2{
            font-size: 1.2rem;
        }
        .uif-formularios{
            width: 100%;
            margin: 0;
            align-items: center;
            margin-top: 1em;
            margin-bottom: 1em;
        }
        .uif-formularios h2{
            font-size: 1.4rem;
        }
        .uif-table{
            width: 100%;
        }
}