@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: url("/views/images/login/FONDO.jpg") no-repeat center center fixed;
    background-size: cover;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    display: flex;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 1200px;
    border: 2px solid #2559a5;
    margin-top: 50px;
}

.login-box {
    flex: 1;
    padding-left: 20px;
    padding-right: 10px;
}

.logo {
    text-align: center;
}

.logo img {
    width: 200px;
}

h2 {
    font-weight: 600;
}

h4 {
    font-weight: 600;
    color: #fff;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    font-weight: 400;
}

textarea.form-control, 
input[type="text"], 
input[type="email"], 
input[type="password"] {
    padding: 15px;
    margin-top: 5px;
    border-radius: 20px;
    border: none;
    width: 100%;
    background-color: #162238;
    color: #fff;
}

input[type="password"] {
    padding-left: 10px;
}

select.form-control {
    padding: 15px;
    margin-top: 5px;
    border-radius: 20px;
    border: none;
    width: 100%;
    background-color: #162238;
    color: #fff;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: left;
    margin-top: 10px;
    margin-left: 10px;
}

.remember-me label {
    margin-left: 10px;
    margin-bottom: 10px;
    color: #fff;
}

#recuerdame{
    transform: scale(1.5);
}

.btn {
    color: white;
    padding: 12px;
    border: none;
    margin-top: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.btn:hover {
    background: #0056b3;
    color: #fff;
}

.links {
    text-align: center;
    margin-bottom: 10px;
}

.links a {
    color: #FFF;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.info-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.ingresos {
    margin-top: 30%;
    text-align: center;
}

footer {
    text-align: justify;
    display: flex;
    padding: 30px;
    width: 100%;
    max-width: 1200px;
}

.social-icons {
    margin-top: 10px;
}

.social-icons i {
    font-size: 20px;
    margin: 0 10px;
    cursor: pointer;
    color: #fff;
}

#btn-ingresar:hover,
#btnGenerar:hover,
#btn-register-submit:hover{
    box-shadow: 0 0 10px #fff;
}


#btn-ingresar,
#btnGenerar,
#btn-register-submit{
    border-radius: 20px;
    border: none;
    margin-top: 15px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px; /* Asegurar una altura fija */
    color: #fff;
    width: 100%;
}
.input-radio{
    font-size: 12px;
    color: rgb(109, 109, 109);
    margin-bottom: 0px;
    margin-top: 8px;
}
.input-radio2{
    font-size: 12px;
    color: #fff;
    margin-bottom: 0px;
    margin-top: 8px;
}




.image:hover{
    transition: transform 0.5s;
    transform: scale(1.05);
}

i:hover {
    transition: transform 0.5s;
    transform: scale(1.5);
}

.image {
    max-width: 100%; /* Evita que la imagen se desborde */
    height: auto; /* Mantiene la proporción */
    position: absolute; /* Mantiene la posición fija */
    transition: transform 0.3s ease-in-out;
}

/* Ajuste para imágenes pequeñas */
.iconAzul, 
.iconNaranja {
    width: 5vw; /* Ajuste relativo al ancho de la pantalla */
    max-width: 40px; /* Limitar el tamaño */
}

/* Ajuste de imágenes grandes */
.ingresos img {
    width: 20vw; /* Ajuste relativo */
    max-width: 200px; /* Limitar tamaño */
}

textarea,
select,
input {
    background-color: white !important; /* Fondo blanco cuando está vacío */
    color: #000 !important; /* Texto negro cuando está vacío */
    border: 1px solid #ccc !important;
    outline: none !important;
    transition: background-color 0.3s ease-in-out;
}

textarea.filled,
select.filled,
input.filled {
    background-color: #162238 !important; /* Fondo oscuro cuando el usuario escribe */
    color: #fff !important;
    border: 1px solid #444 !important;
}

textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  background-color: #162238 !important; /* Color de fondo */
  -webkit-box-shadow: 0 0 0px 1000px #162238 inset !important; /* Asegura el cambio de color */
  -webkit-text-fill-color: #fff !important; /* Color del texto */
  transition: background-color 5000s ease-in-out 0s; /* Evita el parpadeo */
  border: none !important; /* Elimina cualquier borde */
  outline: none !important; /* Elimina cualquier contorno */
  -webkit-background-clip: text !important; /* Corrige bordes blancos */
  background-clip: text !important; /* Versión estándar */
}


input.filled{
    color: #fff !important;
}


@media (max-width: 768px) {
    .image {
        width: 50px; /* Tamaño fijo en móvil */
        position: relative; /* Evita que se muevan demasiado */
      }
    .info-box{
      display: none;
    }

    #copy-right{
        text-align: center;
    }
   
    #form-login, #form-register, #form-recuperarContrasena{
        margin: auto;
        width: 100% !important;
    }
   
    div.row.contenedor-pais-telefono, div.row.contenedor-empresa-nit{
      padding: 0px 10px 0 15px;
    }
   
    #contenedor-logo{
      margin: auto;
    }
   
    .col-md-6{
      padding: 0px;
    }
   
    .iconAzul, .iconNaranja {
        width: 40px; /* Más pequeño en móviles */
    }
  }

  .g-recaptcha {
    display: inline-block;
    border-radius: 5px; /* Aplica borde redondeado */
    overflow: hidden; /* Recorta el contenido fuera del borde */
}

