 body {
     height: 100vh;
     background-color: #f4f6f9;
 }

 .login-container {
     display: flex;
     justify-content: center;
     align-items: center;
     height: 100%;
 }

 .login-form {
     background: #fff;
     padding: 30px;
     border-radius: 8px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
 }

 .login-form input {
     margin-bottom: 15px;
 }
.login-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    height: 100vh;
    background-image: url('../img/logo/gestoria.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 8px 0 0 8px;
}

.overlay-text {
    background-color: rgba(0, 0, 0, 0.5);
    /* Oscurecimiento semitransparente */
    padding: 40px;
    border-radius: 10px;
}

.overlay-text h1 {
    margin: 0;
    font-size: 2rem;
}

.overlay-text p {
    margin-top: 10px;
    font-size: 1.2rem;
}

 .form-container {
     display: flex;
     width: 100%;
     height: 100vh;
 }

 .form-container .col-md-6 {
     padding: 0;
 }

 /* Para pantallas pequeñas, se apilarán las columnas */
 @media (max-width: 767px) {
     .form-container {
         flex-direction: column;
     }

     .login-image {
         height: 50vh;
         border-radius: 8px 8px 0 0;
     }
 }

/***********ojo********/




/* Asegura que el input y el botón tengan la misma altura */
.input-group .form-control,
.input-group .btn {
    height: calc(1.5em + 0.75rem + 2px);
    /* Altura común (ajusta según necesites) */
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 1rem;
    /* Tamaño de texto consistente */
}

/* Ajuste específico para el botón */
.input-group .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 0 0.375rem 0.375rem 0;
    /* Bordes redondeados solo en los extremos derechos */
}

/* Tamaño del icono */
.input-group .btn i.bi {
    font-size: 1rem;
    /* Asegura que el icono no desborde */
    line-height: 1;
}