/* ==========================================
   LIBRO DE RECLAMACIONES
========================================== */

.libro-reclamaciones-page {
    background: #f5f5f5;
    padding: 50px 20px;
}

.libro-reclamaciones-page .libro-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;

    align-items: start;
}

.libro-reclamaciones-page .formulario,
.libro-reclamaciones-page .info {
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;

    box-shadow: 0 2px 10px rgba(0,0,0,0.06);

    box-sizing: border-box;
}


/* TITULOS */

.libro-reclamaciones-page h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 1.2;
}


/* FILAS */

.libro-reclamaciones-page .row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}


/* LABELS */

.libro-reclamaciones-page label {
    display: block !important;
    margin-bottom: 7px;

    font-size: 14px;
    font-weight: 600;

    color: #333;
}


/* INPUTS */

.libro-reclamaciones-page input[type="text"],
.libro-reclamaciones-page input[type="email"],
.libro-reclamaciones-page input[type="tel"],
.libro-reclamaciones-page input[type="date"],
.libro-reclamaciones-page input[type="number"],
.libro-reclamaciones-page select,
.libro-reclamaciones-page textarea {

    display: block !important;

    width: 100% !important;
    height: 44px;

    padding: 10px 12px !important;

    margin: 0 0 18px 0 !important;

    border: 1px solid #d5d5d5 !important;
    border-radius: 5px !important;

    background: #ffffff !important;
    color: #333333 !important;

    font-size: 14px !important;

    box-sizing: border-box !important;

    box-shadow: none !important;
}


.libro-reclamaciones-page textarea {
    height: 120px !important;
    min-height: 120px;
    resize: vertical;
}


/* SELECT */

.libro-reclamaciones-page select {
    appearance: auto !important;
}


/* CHECKBOX */

.libro-reclamaciones-page .check {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;

    gap: 10px;

    margin: 5px 0 20px 0;

    font-weight: 400;
    line-height: 1.5;
}


.libro-reclamaciones-page .check input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;

    min-width: 18px;

    margin: 2px 0 0 0 !important;

    padding: 0 !important;
}


/* BOTON */

.libro-reclamaciones-page button[type="submit"] {

    display: block;

    width: 100%;

    border: none !important;
    border-radius: 5px;

    padding: 14px 20px !important;

    background: #e30613 !important;
    color: #ffffff !important;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.2s;
}


.libro-reclamaciones-page button[type="submit"]:hover {
    background: #bd0010 !important;
}


/* INFO DERECHA */

.libro-reclamaciones-page .info p {
    font-size: 14px;
    line-height: 1.7;

    margin-bottom: 17px;

    color: #555;
}


.libro-reclamaciones-page .info .nota {
    color: #d30000 !important;
}


/* OBLIGATORIOS */

.libro-reclamaciones-page .obligatorio {
    color: #e30613;
}


/* MENSAJES */

.libro-reclamaciones-page .mensaje-exito {
    padding: 15px;

    margin-bottom: 20px;

    border: 1px solid #b7dfc2;
    border-radius: 5px;

    background: #eaf8ed;

    color: #19692c;
}


.libro-reclamaciones-page .mensaje-error {
    padding: 15px;

    margin-bottom: 20px;

    border: 1px solid #f0baba;
    border-radius: 5px;

    background: #ffe9e9;

    color: #a30000;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .libro-reclamaciones-page .libro-container {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .libro-reclamaciones-page {
        padding: 25px 12px;
    }

    .libro-reclamaciones-page .formulario,
    .libro-reclamaciones-page .info {
        padding: 20px;
    }

    .libro-reclamaciones-page .row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}