
  #loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../imagenes/loader.gif') 50% 50% no-repeat rgb(249,249,249);
    opacity: .8;
  }

  #btnRegistrar{
    height: 33px; 
    width: 95%; 
    border: 2px solid;
    border-radius: 25px;
    font-size: 15px;
    background-color: #326d93;
    color: white;
    margin:1px;
 }

  #btnRegistrar:hover {
    background: white;
    color: #326d93 !important;
  }

  #btnRegistrar:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
  }



  #mycontainer { max-width: 1300px !important; }

  .subtituloMenu{
    font-size: 22px;
    color: black;|
    font-family: 'Arial', cursive;
    text-align: left;
    font-weight: 400;
  }


/* POPPINS FONT */
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
    
    font-family: 'Poppins', 'Arial', sans-serif;
}



.wrapper{
  background-image: url('../imagenes/fondoMutualWeb4.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0 20px;
}

.main{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.side-image{
    background-image: url('../imagenes/frente.jpg');
    /*background-image: url('<?php echo $imagenPrincipal; ?>');*/
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px 0px 0px 10px;
    position: relative;
}


.row{
  width: 850px;
  height: 550px;
  border-radius: 10px;
  background: #fff;
  padding: 0px;
  box-shadow: 5px 5px 10px 1px rgba(0,0,0,0.2);
}

.text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text p{
    color: #fff;
    font-size: 20px; 
}

i{
    font-weight: 400;
    font-size: 15px;
}

.right{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.input-box{
  width: 350px;
  box-sizing: border-box;
}

.input-box header{
    font-weight: 600;
    text-align: center;
    margin-bottom: 35px;
    font-size: 20px;
}

.input-field{
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 10px 0 10px;
}

.input{
    height: 38px;
    width: 90%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    outline: none;
    margin-bottom: 20px;
    color: #40414a;
}

.input-box .input-field label{
    font-size: 13px;
    position: absolute;
    top: -10px;
    left: 10px;
    pointer-events: none;
    transition: .5s;
}

.input-field input:valid ~ label{
   top: -10px;
   font-size: 12px;
   color: #326d93;
 }

 .input-field .input:focus, .input-field .input:valid{
    border-bottom: 1px solid #326d93;
 }


#modulo {
  display: flex;
  align-items: left;
  justify-content: left;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 600;
  color: #4682B4;
}

.logo-img {
  width: 60px; /* Ajusta según el tamaño deseado */
  height: auto;
}

.titulo-modulo {
  font-size: 25px;
  margin-top: 12px;
}




 .submit{
    border: none;
    outline: none;
    height: 45px;
    background-color: #eea236;
    color: white;
    border-radius: 5px;
    transition: .4s;
    border: 2px solid;
    text-align: center;
 }

 .submit:hover{
    color: #eea236;
    background-color: white;
 }


 .signin{
    text-align: center;
    /*font-size: small;*/
    font-size: 14px;
    margin-top: 15px;
}
span a{
    text-decoration: none;
    font-weight: 700;
    color: #000;
    transition: .5s;
}
span a:hover{
    text-decoration: underline;
    color: #000;
}

@media only screen and (max-width: 768px){
    .side-image{
        border-radius: 10px 10px 0 0;
    }
    .text{
        position: absolute;
        top: 70%;
        text-align: center;
    }
    .text p, i{
        font-size: 16px;
    }
    .row{
        max-width:420px;
        width: 100%;
    }
}