/* Estilos específicos para Solicitar Factura */

body.page-factura {
    background: #E5E5E5 url('../assets/img/uploads/factura.jpg') no-repeat top 130px center !important;
    background-size: contain !important;
}

.page-factura .header-top {
    background: #fff !important;
}

.page-factura .inner-page-content {
    background: transparent;
    padding: 60px 0 40px;
}

/* Using global .main-container from custom.css */

.page-factura h1 { 
    font-weight: 300; 
    font-size: 26px; 
    color: #575756; 
    border-bottom: 1px solid #e5e5e5; 
    margin-bottom: 25px; 
    padding-bottom: 10px; 
    text-transform: none;
}

.page-factura .finfo {
    font-size: 14px;
    color: #575756;
    background: #fdf2f9;
    padding: 10px 15px;
    border-left: 4px solid #5D004A;
    margin: 20px 0;
}

/* Form Styles Simplificados */
.invoice-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.invoice-form .full-width {
    grid-column: span 2;
}

.invoice-form input[type="text"], 
.invoice-form input[type="email"],
.invoice-form input[type="file"] {
    background: #fff !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 4px !important;
    padding: 10px 12px !important;
    font-size: 14px !important;
    color: #333 !important;
    width: 100%;
}

.invoice-form input[type="submit"] {
    background: #5D004A !important;
    color: #fff !important;
    padding: 8px 35px !important;
    border-radius: 20px !important;
    font-size: 14px !important;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border: none !important;
    margin-top: 20px;
    justify-self: end;
}

.invoice-form input[type="submit"]:hover {
    background: #000 !important;
}

.consent-field {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12px;
    color: #575756;
}

/* Relying on global custom.css */

@media screen and (max-width: 768px) {
    .invoice-form {
        grid-template-columns: 1fr;
    }
    .invoice-form .full-width {
        grid-column: span 1;
    }
}
