/* CONTENEDOR */
.container_formulario {
    display: flex;
    min-height: 100vh;
}

/* FORMULARIO */
.form-section {
    flex: 1;
    padding: 60px 50px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-section h2 {
    color: #073332;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
}

input, select, textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

textarea {
    height: 120px;
    resize: none;
}

/* BOTÓN */
.btn {
    margin-top: 10px;
    background: #073332;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

/* IMAGEN */
.image-section {
    flex: 1;
    background: url('tu-imagen.jpg') center center no-repeat;
    background-size: cover;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 1024px) {
    .form-section {
        padding: 40px;
    }
}

/* TABLETS Y CELULARES */
@media (max-width: 768px) {

    .container_formulario {
        flex-direction: column;
    }

    .image-section {
        width: 100%;
        height: 250px;
        order: -1; /* 👈 imagen arriba */
    }

    .form-section {
        width: 100%;
        padding: 30px 20px;
    }

}

/* CELULARES PEQUEÑOS */
@media (max-width: 480px) {

    .form-section h2 {
        font-size: 22px;
    }

    input, select, textarea {
        font-size: 14px;
        padding: 12px;
    }

    .btn {
        padding: 12px;
    }

}