/* General styles */


.fondo{
    margin: 0;
    padding: 0;
    background-image: url('/img/2025/sorteo2025_mayoreo_home.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 6.25rem; 
    height: 6.25rem;
    background-image: url('/img/ibarra-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.factura{
    background-image: url('/img/loginIbarra/factura2023.png'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    height: 100vh; display: flex; 
    justify-content: center; 
    align-items: center;
}



/* Login box styles */
.login-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* width: 30%;  */
    width: 100%;
    max-width: 560px;
    text-align: center;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap; 
}

.header-container img {
    width: 3em;
    margin-right: 10px;
}

.header-container h4 {
    margin: 0;
    font-size: 1.2em;
    text-align: center; 
}

.form-control:focus {
    border-color: #014495; 
    box-shadow: 0 0 5px #014495; 
    outline: none; 
}

/* Buttons */
.btn-primary {
    width: 25%; 
    background-color: #014495;
    border-color: #014495;  
}

.back-btn {
    margin-top: 15px;
    width: 80%;
    text-align: center;
    font-weight: bold;
    background-color: #f45c56;
    border: none;
}

/* Modal styles */
.modal-content img {
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.modal-title {
    font-size: 1.5em;
    font-weight: bold;
}

.btn-secondary {
    background-color: #f45c56;
    border-color: #f45c56;
}

/* Responsive styles */
@media (max-width: 768px) {
    .login-box {
        width: 100%;
        max-width: 95%;
        padding: 20px; 
    }

    .btn.btn-primary{
        width: 100%;
    }

    .header-container {
        flex-direction: column; 
    }

    .header-container img {
        margin-bottom: 10px;
    }

    .header-container h4 {
        font-size: 1em; 
    }

    .btn-primary {
        width: 40%;
    }

    .back-btn {
        width: 100%; 
    }
}

@media (max-width: 480px) {
    .login-box {
        padding: 15px;
    }

    .header-container img {
        width: 2.5em; 
    }

    .header-container h4 {
        font-size: 0.9em;
    }

    .btn-primary, .back-btn {
        width: 100%; 
    }

    .modal-title {
        font-size: 1.2em; 
    }
}

