    body{
        margin:0;
        font-family: 'Segoe UI', sans-serif;
    }

    .hero{
        position: relative;
        width: 100%;
        height: 100%;
    }

    .hero-img {
        width: 100%;
        height: auto;
        display: block;
    }

    .form-overlay {
        position: relative;
        margin-top: 40px; /* espacio entre imagen y formulario */
    }

    .card-form{
        position: relative;
        z-index: 2;
        border-radius:20px;
        background: #fff;
        backdrop-filter: blur(10px);
       box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        margin-top: -80px;
    }

    .btn-main{
        background: linear-gradient(45deg,#E8C22C,#E8C22C);
        border:none;
        color:black;
        font-weight:bold;
        transition:.3s;
    }

    .btn-main:hover{
        transform:scale(1.05);
    }

    .form-control, select{
        border-radius:10px;
    }

    .titulo{
        color:white;
        text-align:center;
        margin-bottom:30px;
    }

    .form-section {
    position: relative;
    padding: 100px 15px;
    background:#FFFFFF;
    overflow: hidden;
    }

.form-section::before {
    content: "";
    position: absolute;
    
    width: 500px;
    height: 500px;

    background: radial-gradient(circle at center, #f4d03f, #d4ac0d);

    border-radius: 50%;

    bottom: -20px;
    left: -300px;

    z-index: 1;
    
}

@media (max-width: 768px) {

    .form-overlay {
        position: relative;
        bottom: 0;
        margin-top: -50px;
    }

    body {
        /*padding-bottom: 50px;*/
         margin:0;
        font-family: 'Segoe UI', sans-serif;
    }
}
