/* Example: Add your custom styles here */
body {
    /* custom code */
}

/* Wrapper */
.ldf-contact-form{
    width:100%;
}

/* Rows */
.ldf-contact-form .ldf-row{
    display:flex;
    gap:20px;
    margin:0 0 20px 0 !important;
    padding:0 !important;
}

.ldf-contact-form .ldf-col{
    flex:1;
    margin:0 !important;
    padding:0 !important;
}

.ldf-contact-form .ldf-row-single{
    margin:0 0 20px 0 !important;
}

/* Fields */
.ldf-contact-form input,
.ldf-contact-form textarea{
    width:100%;
    margin:0 !important;
    padding:16px 20px;
    border:1px solid #d9d9d9;
    border-radius:10px;
    background:#fff;
    box-sizing:border-box;
    font-size:16px;
    line-height:1.4;
    outline:none;
}

.ldf-contact-form input:focus,
.ldf-contact-form textarea:focus{
    border-color:#000;
}

.ldf-contact-form textarea{
    min-height:180px;
    resize:vertical;
}

/* Button */
.ldf-submit-btn{
    min-width:220px;
    height:56px;
    border:none;
    border-radius:10px;
    background:#000;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

/* Messages */
.ldf-message{
    margin-top:15px;
}

/* Mobile */
@media(max-width:767px){

    .ldf-contact-form .ldf-row{
        flex-direction:column;
        gap:20px;
    }

    .ldf-submit-btn{
        width:100%;
    }

}