body {
    font-family: Arial, sans-serif;
    display: grid;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('../assets/img/fondoDiv.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Dos columnas iguales */
    width: 800px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;

}

.container .left-panel {
    background-color: white;
    width: 400px;
    height: auto;
    color: white;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-image: url('../assets/img/fondo.png');
    background-size: cover;
    background-position: left;

}

.left-panel h2 {
    font-size: 22px;
    /* Ajusta el tamaño del texto */
    font-weight: bold;
    /* Hace que el texto sea más grueso */
   
    /* Asegura alineación a la izquierda */
    width: 250px;
    /* Evita que el texto se desborde */
    line-height: 1.2;
    /* Espaciado entre líneas */
    margin-left: 1px;
    /* Centra horizontalmente dentro del contenedor */
    margin-right: 100px;
    padding-left: 10px;
    /* Ajusta el margen desde la izquierda */
    display: block;
    justify-content: center;
    align-items: center;
    position: relative;
}


.right-panel {
    flex: 1;
    padding: 60px 40px 40px;
    position: relative;
}

form {
    display: flex;
    flex-direction: column;
}

input[type="text"],
input[type="password"] {
    border: none;
    border-bottom: 2px solid #a67c00;
    padding: 10px;
    margin-bottom: 20px;
    width: 100%;
    outline: none;
    background: transparent;
}

.remember-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

button {
    background-color: #a67c00;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 8px;
    width: 200px;
    display: block;
    margin: 0 auto;
}


button:hover {
    background-color: #8a6500;
}

.forgot-password {
    text-align: center;
    color: #a67c00;
    cursor: pointer;
    margin-top: 10px;
}

.logos-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: -20px;
    /* Ajusta esto según necesites */
    width: 100%;
}

.logo {
    max-width: 100px;
    /* Ajusta el tamaño según necesites */
    height: auto;
}

.msg_error {

    color: red;
    /* Mejor color para error */
    font-size: 14px;
    text-align: center;
    /* Lo alineamos al centro */
    margin-bottom: 10px;
    background: #ffdddd;
    /* Fondo para que sea más visible */
    padding: 8px;
    border: 1px solid red;
    width: 100%;
    border-radius: 5px;
    position: relative;
    display: block;
    /* Asegura que ocupe su espacio sin afectar otros elementos */
}