/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 16 2026 | 08:43:54 */
.sb-contact-form{
    width:100%;
    max-width:1000px;
    background:#ffffff;
    padding-bottom: 0px;
	padding-top: 20px;
    border-radius:20px;
/*     box-shadow:0 10px 40px rgba(0,0,0,0.12); */
    margin:0 auto;
}

.sb-contact-form h2{
    font-size:32px;
    color:#111827;
    margin-bottom:10px;
    text-align:center;
}

.sb-contact-form p{
    text-align:center;
    color:#6b7280;
    margin-bottom:30px;
    font-size:15px;
}

.sb-form-row{
    display:flex;
    gap:20px;
}

.sb-form-group{
    width:100%;
    margin-bottom:20px;
}

.sb-contact-form input,
.sb-contact-form textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #d1d5db;
    border-radius:12px;
    outline:none;
    font-size:15px;
    transition:0.3s ease;
    background:#f9fafb;
}

.sb-contact-form input:focus,
.sb-contact-form textarea:focus{
    border-color:#2563eb;
    background:#fff;
    box-shadow:0 0 0 4px rgba(37,99,235,0.12);
}

.sb-contact-form textarea{
    min-height:160px;
    resize:none;
}

.sb-submit-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background:#ec6727;
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s ease;
	margin-top: -7px;
}

.sb-submit-btn:hover{
    background:#2f2583;
    transform:translateY(-2px);
}

@media(max-width:768px){

    .sb-form-row{
        flex-direction:column;
        gap:0;
    }

    .sb-contact-form{
        padding:30px 20px;
    }

    .sb-contact-form h2{
        font-size:26px;
    }

}