﻿html, body {
    height: 100%;
    margin: 0;
}

.login-page {
    height: 100vh;
    display: flex;
}

.login-form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--tblr-body-bg);
}

.login-card {
    width: 100%;
    max-width: 420px;
}

.login-image {
    position: relative;
    background: url('../img/banners/facturaweb-login-bg2.jpg') no-repeat center center;
    background-size: cover;
}

.login-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

    .login-overlay h1 {
        font-weight: 700;
        letter-spacing: 1px;
    }

    .login-overlay p {
        font-size: 1.1rem;
        opacity: 0.85;
        max-width: 400px;
    }

@media (max-width: 767.98px) {
    .login-image {
        display: none;
    }

    .login-page {
        flex-direction: column;
    }
}
