﻿body {
    /* ya tienes tu clase de fondo, solo asegúrate de algo así */
    background: var(--tu-fondo) no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: "Roboto", sans-serif;
}

.FondoFac {
    background-image: url('../img/Fondo_Facturacion.png');
    background-size: cover;
    background-position: center center; /* centra horizontal, enfoca el bottom */
    background-attachment: fixed;
}

/* Este contenedor centra vertical y horizontalmente el layout */
.form-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* opcional: asegura que no se estire más de lo necesario */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 680px;
}

/* Tarjeta visual del layout */
.form-card {
    width: 860px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    padding: 40px;
}

/* Opcional: centrado del texto principal */
.titulo-form {
    text-align: center;
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 500;
    color: rgb(0, 40, 85) !important;
}

/* Centrar logotipo dentro del layout */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    gap: 20px; /* espacio uniforme entre ambos logos */
}

.logo {
    height: 61px;
    width: auto;
    transform: scale(0.6); /* reduce el tamaño al 60% */
    transform-origin: center center; /* mantiene el centrado visual */
    transition: transform 0.2s ease-in-out;
}

.logo-link:hover .logo {
    transform: scale(0.65); /* ligero zoom al pasar el mouse */
    cursor: pointer;
}

.boxes {
    border-radius: 5px;
    margin-right: 0px;
}

.form_submit {
    background: rgb(0,56,101) !important;
    color: white !important;
    font-weight: 350;
    font-size: 1rem;
    font-family: Roboto;
    padding: .8em 0;
    border: none;
    border-radius: .5em;
}

.botones {
    background: rgb(241, 230, 214) !important;
    color: rgb(22,71,115) !important;
    border-radius: 6px;
    color: white !important;
    text-align: center;
}

.botonesHover {
    background: rgb(0,107,166) !important;
    color: white !important;
}


footer {
    background: rgb(0,56,101);
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 30px;
    text-align: center;
}

a.dx-hyperlink {
    text-decoration: none !important;
}

    a.dx-hyperlink:hover {
        text-decoration: underline !important;
    }

.panel{
    margin-top : -30px;
}

.mensaje-mantenimiento {
    font-size: 18px;
    color: #555;
    text-align: center;
    margin: 20px auto;
    max-width: 600px;
    line-height: 1.6;
}