    /* Cambiar color del fomrulario */
    :root {
        --colorformulario: #511752
    }

    #banner-form .formulario .texto,
    #banner-form .formulario .titulo {
        margin-bottom: 20px;
        text-align: center
    }

    #banner-form {
        z-index: 2;
        position: relative;
        border-radius: 20px;
        padding: 20px;
        margin-top: 20px;
        background: rgb(239 214 238 / 90%);
        backdrop-filter: blur(1px);
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
    }

    #banner-form .formulario {
        text-align: center
    }

    #banner-form .input-g {
        display: flex;
        margin-bottom: 10px !important;
        text-align: center;
        flex-direction: column;
        justify-content: center
    }

    #banner-form .input-g2 {
        flex-direction: row;
        justify-content: space-evenly
    }

    #banner-form .head {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center
    }

    #banner-form .profile-image {
        position: relative;
        height: 100px;
        width: 100px;
        margin-right: 20px
    }

    #banner-form .profile-info span {
        display: block;
        font-size: 1em;
        color: #000
    }

    #banner-form .profile-info span strong {
        color: var(--colorformulario);
        font-weight: 900
    }

    #banner-form img {
        border-radius: 100px
    }

    #banner-form .circle {
        position: absolute;
        bottom: 0;
        right: 10px;
        height: 15px;
        width: 15px;
        border-radius: 100px;
        background: #2ee7b1
    }

    #banner-form .formulario .titulo {
        font-size: 1.5em;
        font-weight: 900;
        color: var(--colorformulario)
    }

    #banner-form .formulario .texto strong {
        color: var(--colorformulario)
    }

    #banner-form .formulario input,
    #banner-form .formulario select {
        border-radius: 10px !important;
        padding: 10px 10px 10px 20px;
        background: #f2f2f2;
        border: 2px solid var(--colorformulario);
        height: auto !important;
        display: block !important;
        line-height: normal !important;
        width: 100% !important;
    }

    #banner-form .formulario input::placeholder {
        color: #000
    }

    

    #banner-form .fail {
        display: block;
        background: #f36e59
    }

    #banner-form .send {
        display: block;
        background: #2ee7b1
    }

    @media (max-width:768px) {
        #banner-form .input-g2 {
            display: block !important
        }

        #banner-form .formulario a {
            display: block !important
        }
    }