body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: white;
}

.lm-container h2 {
    margin-bottom: 35px;
    line-height: 130%;
}

.lm-container {
    max-width: 1100px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    background: #292E31;
    padding: 20px 0px 30px;
    position: relative;
}

.lm-container::before {
    content: '';
    position: absolute;
    width: 100px;
    top: 0;
    left: 0;
    height: 100%;
    background: white;
}

/* IZQUIERDA */
.left {
    flex: 1;
    padding-bottom: 15px;
}


.left img {
    width: 85%;
    max-width: 350px;
    filter: drop-shadow(5px 10px 5px #777);
}

/* DERECHA */
.right {
    flex: 2;
    color: #fff;
    padding: 0px 30px 0px 30px;
}

.right h1 {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
}

.right strong {
    font-weight: 700;
}

/* FORM */
.form {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 520px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #FFF;
    font-family: Lato;
    font-size: 12px;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 144%;
}

.form-group input,
.form-group select {
    padding: 12px 12px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
}

/* FULL WIDTH */
.full {
    grid-column: span 2;
}

/* CHECKBOX */
.full.checkbox {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 16px;
}

/* BOTÓN */
button {
    margin-top: 20px;
    background: #f5a800;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #ffbb33;
}

.full.checkbox input {
    appearance: none;
    background: white;
    cursor: pointer;
    height: 14px;
    padding: 0 !important;
    position: relative;
    width: 14px !important;
    display: inline-block;
    border-radius: 0px !important;
    margin-left: -10px;
}

.full.checkbox input:before {
    background: #ffbb33;
    content: "";
    height: 10px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: .2s ease;
    width: 10px
}

.full.checkbox input:checked:before {
    transform: translate(-50%, -50%) scale(1)
}

.full.checkbox label {
    color: #FFF;
    font-family: Lato;
    font-size: 12px;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 144%;
    margin-bottom: 0px !important;
}

.pdf-footer-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.pdf-footer {
    background-color: #292E31;
    color: white;
    width: 100%;
    margin-top: 45px;
    border-collapse: collapse;
}

.anchor-button {
    display: block;
    width: 150px;
    text-align: center;
    background-color: #FFB500;
    font-weight: bold;
    font-size: 12px;
    padding: 10px 0px;
    margin: 5px 0px;
    border-radius: 3px;
    text-decoration: none;
    color: black;
}

.pdf-disclaimer {
    font-size: 12px;
    margin: 5px 20px;
}

.product-table {
    border-collapse: collapse;
    padding: 10px 25px 5px;
    border: 1px solid black;
    width: 100%;
    table-layout: fixed;
}

p {
    margin: 0px;
}

.error-text {
    color: #e63946;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.input-error {
    border: 1px solid #e63946 !important;
    background-color: #fff5f5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .lm-container {
        flex-direction: column;
        gap: 0px;
    }

    .full button {
        width: 100%;
    }

    .lm-container::before {
        width: 100%;
        height: 150px;
    }

    .form {
        grid-template-columns: 1fr;
    }

    .full {
        grid-column: span 1;
    }
}