﻿



/* --- GENERALES --- */

.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

.dl-horizontal dt {
    white-space: normal;
}

input,
select,
textarea {
    max-width: 280px;
}






/* --- LOGIN ESPECÍFICO --- */

body.login-background {
    background-image: url('../Content/img/Campus4.jpg'); /* Ajusta la ruta si es necesario */
    background-size: cover;
    background-position: center center;
    position: relative;
    background-repeat: no-repeat;
    min-height: 100%;
}









    /* Overlay para oscurecer solo el login */
    body.login-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.4); /* Oscurece el fondo */
        z-index: 0;
    }

/* Contenedor del login */
.login-container {
    position: relative;
    z-index: 1;
    max-width: 350px;
    margin: auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0px 0px 10px #00000055;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
}

    /* Título del login */
    .login-container h2 {
        color: #000;
        font-weight: bold;
        text-align: center;
        margin-bottom: 20px;
    }

/* Campos de entrada */
.input-sm {
    height: 35px;
    font-size: 14px;
}

/* Footer del login */
.footer-text {
    color: #000;
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
}
