﻿/* Layout sin márgenes */
.empty-layout {
    margin: 0;
    padding: 0;
}

/* Fondo completo para la página de login */
.login-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('/images/fondo.jpg'); /* ajustá la ruta si el archivo está en otra carpeta */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Contenedor centrado del formulario */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Elimina scroll o márgenes extra */
body {
    overflow: hidden;
}
