

   
 
    
   
/* modal*/
    .container-fluidlogin{
      
        display: flex;
  
  flex-wrap:wrap;
  width:fit-content; 
  margin-top: -25%; 
 
  margin-left: 40%;
  margin-right: 25%; 
 
  z-index: auto;
     
        }

        
    /* log img */

    .itemlog{
        width: 250px;
        height: 50px;
        
        position: relative;
        
    }
    .itemlog img{
        width: 100%;
        position: absolute;
        left: 0px;
        top: 0px;
    }
    .img-top{
        display: none;   /* Hide top Image */
        z-index: 99;
        
    }

    .itemlog:hover .img-top{
        display: inline;  /* Show top Image */
        transition: 1s;
    }

     /* modal*/

     .modal-content{
      
        border-radius: 3%;
    }

     .icon_user{
        width: 40px;
        
    }

    .icon_pass{
        width: 40px;
        
    }

   

   .butonic{
   
    margin-left: 5%;
   margin-top: 10%;
    
    
}

.imgb{
   
    margin-left: 2%;
    width: 300px;
    
    
}

 /* form*/

::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

form{
    background: #fff;
    width: 100%;
    padding: 8px 0;
    border-radius: 5px;
    box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.8);
}

.form{
    width: 100%;
    margin: auto;
}

form .grupo{
    position: relative;
    margin: 40px;
}

input, textarea{
    background: #8ca8c4;
    color:#ebeef1;
    font-size: 18px;
    padding: 8px 8px 8px 4px;
    display: block;
    width: 100%;
    border:none;
    border-bottom: 1px solid var(--colorTextos);
    resize: none;
}

input:focus,textarea:focus{
    outline: none;
    color: rgb(94,93,93);
}

input:focus~label, 
input:valid~label, 
textarea:focus~label, textarea:valid~label{
    position: absolute;
    top: -14px;
    font-size: 12px;
    color: #111f2a;
}



input:focus~.barra::before, textarea:focus~.barra::before{
    width: 100%;
}
.barra{
    position: relative;
    display: block;
    width: 100%;
}
.barra::before{
    content: '';
    height: 2px;
    width: 0%;
    bottom: 0;
    position: absolute;
    background: linear-gradient(to right, #6A82FB, #FC5C7D);
    transition: 0.3s ease all;
    left: 0%;
}

.buttonf{
    background: #FC5C7D;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #6A82FB, #FC5C7D);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #6A82FB, #FC5C7D);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    display: block;
    width: 100px;
    height: 40px;
    border:none;
    color:#fff; 
    border-radius: 4px;
    font-size: 16px;
    margin: 10px auto;
    cursor: pointer;
}




@media screen and (max-width:1100px){
    form{
        width: 50%;
    }
}

@media screen and (max-width:600px){
    form{
        width: 60%;
    }
}

@media screen and (max-width:450px){
    form{
        width: 80%;
    }
}

@media screen and (max-width:300px){
    form{
        width: 90%;
    }
}
