/* FORMULARIO */
#form-cont input[type="text"],
#form-cont input[type="email"],
#form-cont input[type="tel"],
#form-cont input[type="submit"] {
    width: 100%;
    font-family: var(--font-primary);
    background-color: var(--c-secondary);
    border: none;
    border-bottom: 2px solid var(--c-white);
    color: var(--c-white);
    margin-top: 10px;
}

#form-cont textarea {
    width: 100% !important;
    font-family: var(--font-primary);
    background-color: var(--c-secondary);
    border: none;
    border-bottom: 2px solid var(--c-white);
    color: var(--c-white);
    margin-top: 10px;
    max-height: 130px;
}

#form-cont .form-2col {
    display: flex;
    justify-content: space-between;
    width: 100%;

    & > p {
        width: 50%;

        &:first-child {
            margin-right: 10px;
        }
    
        &:last-child {
            margin-left: 10px;
        }
    }
}

#form-cont label {
    color: var(--c-white);

    a {
        color: var(--c-grey-light);
        transition: all 0.35s ease;

        &:hover {
            color: var(--c-white);
        }
    }
}

.aceptar {
    margin-bottom: 20px;
    
    .wpcf7-list-item {
        margin-left: 0 !important;
    }

    label {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 150%;

        & > input {
            width: 5% !important;
            margin-right: 10px !important;
            margin-top: 0 !important;
        }
        
        .wpcf7-list-item-label {
            width: 95% !important;
            font-size: 14px;
        }
    }
}


/* RESPONSIVE */
@media screen and (max-width:1024px) {

}

@media screen and (max-width:767px) {
    .aceptar label {
        width: 100%;
    }
}

@media screen and (max-width:600px) {
    #form-cont .form-2col {
        flex-direction: column;
        & > p {
            width: 100%;
            margin-right: 0 !important;
            margin-left: 0 !important;

            &:last-child {
                margin-bottom: 24px !important;
            }
        }
    }
}