body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
}

.login-container {
    display: flex;
    height: 100vh;
}

.left-panel {
    /* El valor más pequeño para que sea más estrecho */
    flex: 1.3;
    background-color: #01275f;
    /* Ruta de imagen corregida */
    background-image: url('../images/unah_fondo.png');
    background-size: cover; /* Esto hace que la imagen cubra todo el espacio */
    background-position: center; /* Centra la imagen */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding-top: 100px;
}

.left-panel .unah-logo {
    width: 150px;
    margin-top: -30px; /* Ajusta este valor para bajar el logo */
}
.right-panel {
    /* El valor más grande para que ocupe más espacio */
    flex: 0.7;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.left-panel .unah-logo {
    width: 150px;
}

.login-box {
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.login-box .campus-logo {
    width: 150px;
    margin-bottom: 15px;
}

.login-box .login-title {
    font-size: 20px;
    font-weight: bold;
    color: #01275f;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-group-options {
    text-align: left;
    font-size: 14px;
    margin-top: 10px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-top: 20px;
}