.form-contacto{
    margin-top: 40px;
    form{
        width: 100%;
        max-width: 730px;
        margin: 0 auto;
    }
    input:not([type="checkbox"], [type="submit"]), select, textarea, .input-custom{
        width: 100%;
        padding: 10px;
        border: 1px solid #D9D9D9;
        border-radius: 5px;
        background-color: var(--color-white);
        color: #000;
        font-size: 16px;
        font-weight: 400;
        &:focus{
            outline: 1px solid var(--color-blue);
        }
        &.invalid{
            border-color: var(--color-red);
        }
    }
    label{
        font-size: 16px;
        font-weight: 400;
        color: #000;
    }
    textarea{
        resize: none;
        height: 100px;
    }
    input[type="checkbox"]{
        width: 20px;
        height: 20px;
    }
    .input-group{
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 15px;
    }
    .checkbox-group{
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
        label{
            font-size: 14px;
        }
    }
    .btn-group{
        position: relative;
        margin-top: 30px;
    }
    .btn{
        width: 100%;
    }
}
.input-group-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}
.input-group-grid-item{
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    border: 1px solid #D9D9D9;
    padding: 10px;
    border-radius: 5px;
    .input-group{
        margin-bottom: 0;
    }
}
.btn-delete-product{
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1;
    width: 20px;
    height: 20px;
    span{
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--color-blue);
        &:first-child{
            transform: rotate(45deg) translate(1px, 1px);
        }
        &:last-child{
            transform: rotate(-45deg);
        }
    }
}
@media (min-width: 768px) {
    .form-contacto{
        .btn-group{
            display: flex;
            justify-content: center;
        }
        .btn{
            width: auto;
            min-width: 200px;
        }
    }
}
@media (min-width: 1400px) {
    .form-contacto{
        margin-top: 80px;
    }
}