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

    /* Nuevo estilo para el contenedor del formulario */
    .formulario-container {
        width: 65%;
        height: 86%;
        margin-top: 150px;
        border-radius: 25px;
        background-color: rgba(255, 255, 255, 0.9); /* Relleno blanco con 70% de opacidad */
        padding: 25px 70px 25px 70px;
        border: 1px solid #ccc;
        border-radius: 10px;
        box-shadow: 8px 10px 10px 4px rgba(0, 0, 0, 0.3);
    }

    input[type="text"] {
        display: block;
        width: 100%;
        padding: .375rem .75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--bs-body-color);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: var(--bs-body-bg);
        background-clip: padding-box;
        border: var(--bs-border-width) solid var(--bs-border-color);
        border-radius: var(--bs-border-radius);
        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

    @media only screen and (max-width: 600px) {
        #logo-mom{
            display: none;
        }

        .formulario-container {
            width: 100%;
            height: 90%;
            margin-top: 150px;
            border-radius: 25px;
            background-color: rgba(255, 255, 255, 0.9); /* Relleno blanco con 70% de opacidad */
            padding: 25px 50px 0px 50px;
            border: 1px solid #ccc;
            border-radius: 10px;
            box-shadow: 8px 10px 10px 4px rgba(0, 0, 0, 0.3);
        }
    }

    @media only screen and (min-width: 601px) and (max-width: 767px) {
        #logo-mom{
            display: none;
        }

        .formulario-container {
            width: 100%;
            height: 90%;
            margin-top: 150px;
            border-radius: 25px;
            background-color: rgba(255, 255, 255, 0.9); /* Relleno blanco con 70% de opacidad */
            padding: 25px 50px 0px 50px;
            border: 1px solid #ccc;
            border-radius: 10px;
            box-shadow: 8px 10px 10px 4px rgba(0, 0, 0, 0.3);
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 1024px) {
        .formulario-container {
            width: 100%;
            height: 90%;
            margin-top: 150px;
            border-radius: 25px;
            background-color: rgba(255, 255, 255, 0.9); /* Relleno blanco con 70% de opacidad */
            padding: 25px 50px 0px 50px;
            border: 1px solid #ccc;
            border-radius: 10px;
            box-shadow: 8px 10px 10px 4px rgba(0, 0, 0, 0.3);
        }
    } 