/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 20 2025 | 18:29:38 */
/* 🔲 Form Wrapper */
.custom-callback-form {
    background: #f5deb3; /* light brown */
    border: 3px solid #ff9800;
    border-radius: 10px;
    padding: 20px;
    max-width: 900px;
    margin: 20px auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    color: #000; /* better contrast on light background */
    position: relative;
}

/* 🟧 Title */
.custom-callback-form .nf-form-title h3 {
    background: #f5deb3;
    border: 3px solid #ff9800;
    border-radius: 6px;
    display: inline-block;
    padding: 6px 18px;
    font-size: 18px;
    font-weight: bold;
    margin: -40px auto 15px auto;
    text-transform: capitalize;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* 🟩 Grid Layout */
.custom-callback-form .nf-form-content {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.custom-callback-form .two-sixths {
    flex: 0 0 32%;  
    max-width: 32%;
}

.custom-callback-form .four-sixths {
    flex: 0 0 65%;  
    max-width: 65%;
}

.custom-callback-form .first {
    clear: left;
}

.custom-callback-form .submit-container {
    display: flex;
    align-items: flex-end;
}

/* 📝 Inputs + Textarea */
.custom-callback-form input[type="text"],
.custom-callback-form input[type="email"],
.custom-callback-form input[type="tel"],
.custom-callback-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    color: #333;
    transition: 0.3s;
    box-sizing: border-box;
}

.custom-callback-form input:focus,
.custom-callback-form textarea:focus {
    border-color: #ff9800;
    box-shadow: 0 0 8px rgba(255,152,0,0.4);
    outline: none;
}

/* Smaller textarea */
.custom-callback-form textarea {
    min-height: 80px; /* reduced height */
    resize: vertical; /* allow resizing if needed */
}

/* 🟧 Submit Button */
.custom-callback-form input[type="submit"] {
    background: #ff9800;
    color: #000;
    font-weight: bold;
    border: none;
    padding: 12px 15px;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    width: 100%;
    height: 45px;
}

.custom-callback-form input[type="submit"]:hover {
    background: #f57c00;
    color: #fff;
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .custom-callback-form .two-sixths,
    .custom-callback-form .four-sixths {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}
