.banner picture {
    width: 100%;
}

.banner picture img {
    width: 100%;
}

.form-container {
    background-color: #ffffff;
    padding: 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 10px;
}

.form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0px;
}

.form-group label {
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
    min-width: auto;
    text-align: left;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    color: #555;
    background-color: #fcfcfc;
    box-sizing: border-box;
    font-style: italic;
}

.form-group input::placeholder,
.form-group select::placeholder {
    color: #a0a0a0;
}

.form-checkbox {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.form-checkbox input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    outline: none;
}

.form-checkbox input[type="checkbox"]:checked {
    background-color: #019DF4;
    border-color: #019DF4;
}

.form-checkbox input[type="checkbox"]:checked::after {
    content: '✔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
}

.form-checkbox label {
    color: #000;
    font-weight: normal;
    font-size: 18px;
}

.form-button {
    text-align: center;
    margin-top: 30px;
}

.form-button button {
    background-color: var(--blue);
    color: white;
    padding: 15px 50px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-button button:disabled {
    background-color: #cdcdcd;
    pointer-events: none;
}

.form-button button:hover {
    background-color: #0056b3;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    /* Oculto por defecto */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #2980b9;
    color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    transform: scale(0.95);
    transition: transform 0.3s ease-in-out;
    width: 100%;
    border-radius: 25px;
}

.popup-overlay.show {
    display: flex;
    /* Muestra el pop-up */
}

.popup-icon {
    font-size: 80px;
    line-height: 1;
    margin-bottom: 20px;
}

.popup-content h2 {
    font-size: 30px;
    margin: 0 0 10px;
}

.popup-content p {
    font-size: 18px;
    margin: 0;
}

.popup-overlay i::before {
    font-size: 50px;
}

.form-section-title {
    text-align: center;
    padding-bottom: 50px;

}

.form-section-title-empresa {
    text-align: center;
    padding-bottom: 50px;
    padding-top: 50px;
}


.c-ingre {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    min-height: 40px;
    padding: 1rem;
}

.c-ingre__info {
    min-width: 230px;
    max-width: 300px;
    border-radius: 8px;
    padding: 1rem;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: normal;
}


@media (min-width: 768px) {
    .form-container {
        margin-top: 1rem;
        margin-bottom: 30px;
    }

    .form-row {
        flex-direction: row;
        gap: 20px;
    }

    .form-group {
        flex: 1;
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .form-group label {
        min-width: 210px;
        text-align: left;
        margin-bottom: 0;
        font-size: 19px;
    }

    .form-checkbox label {
        font-size: 20px;
        font-weight: 700;
    }

    .form-row {
        margin-bottom: 25px;
    }

    .form-checkbox {
        margin-top: 50px;
    }

    .popup-content {
        max-width: 600px;
    }

    .popup-content h2 {
        font-size: 34px;
    }

    .c-ingre__info {
        position: absolute;
        bottom: 0;
        right: 24px;
        transform: translateY(100%);
    }
}