/* Grid Layout for 2-Column Form */
#webform7095652000000742005 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 30px !important;
    width: 100% !important;
    max-width: 800px !important;
    margin: 20px auto !important;
    padding: 40px !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    box-sizing: border-box !important;
    font-family: "Helvetica Neue", Arial, sans-serif !important;
}

/* Make Title and Button Row span full width */
#webform7095652000000742005 > .zcwf_title,
#webform7095652000000742005 > .zcwf_row:last-of-type {
    grid-column: 1 / -1 !important;
}

/* Clear Zoho Default Floats & Setup Rows */
.zcwf_lblLeft .zcwf_row {
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    float: none !important;
    width: 100% !important;
}

.zcwf_lblLeft .zcwf_col_lab,
.zcwf_lblLeft .zcwf_col_fld {
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* Typography & Labels */
.zcwf_lblLeft .zcwf_title {
    font-weight: 600 !important;
    font-size: 24px !important;
    color: #111 !important;
    border-bottom: 1px solid #eee !important;
    padding: 0 0 20px 0 !important;
    margin-bottom: 10px !important;
    letter-spacing: -0.5px !important;
}

.zcwf_lblLeft .zcwf_col_lab {
    padding: 0 0 8px 0 !important;
}

.zcwf_lblLeft .zcwf_col_lab label {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #555 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.zcwf_lblLeft .zcwf_col_lab span {
    color: #d32f2f !important;
}

/* Standard Inputs & Textareas */
.zcwf_lblLeft .zcwf_col_fld input[type=text], 
.zcwf_lblLeft .zcwf_col_fld input[type=password], 
.zcwf_lblLeft .zcwf_col_fld textarea {
    width: 100% !important;
    border: 1px solid #e0e0e0 !important;
    background: #f9f9f9 !important;
    resize: vertical !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    color: #333 !important;
    transition: all 0.2s ease-in-out !important;
    font-family: inherit !important;
    box-sizing: border-box !important;
}

/* Fix for Theme's "Nice Select" Dropdowns */
.zcwf_lblLeft .nice-select.zcwf_col_fld_slt {
    width: 100% !important;
    border: 1px solid #e0e0e0 !important;
    background-color: #f9f9f9 !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    color: #333 !important;
    height: auto !important;
    line-height: 21px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    float: none !important;
    background-image: url('data:image/svg+xml;utf8,') !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 20px !important;
}
.zcwf_lblLeft .nice-select .current {
    margin-right: 20px;
    display: block;
}
.zcwf_lblLeft .nice-select .list {
    width: 100% !important;
    border-radius: 6px !important;
    margin-top: 5px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}
.zcwf_lblLeft .nice-select .option {
    padding: 10px 16px !important;
    min-height: auto !important;
}

/* Focus States */
.zcwf_lblLeft .zcwf_col_fld input[type=text]:focus, 
.zcwf_lblLeft .zcwf_col_fld input[type=password]:focus, 
.zcwf_lblLeft .zcwf_col_fld textarea:focus, 
.zcwf_lblLeft .nice-select.open {
    border: 1px solid #111 !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.05) !important;
    outline: none !important;
}

.zcwf_lblLeft .zcwf_col_fld textarea {
    min-height: 120px !important;
}

/* Buttons Container */
.zcwf_row:last-of-type .zcwf_col_fld {
    display: flex !important;
    gap: 15px !important;
    justify-content: flex-start !important;
    margin-top: 10px !important;
}

/* Submit Button */
.zcwf_lblLeft .formsubmit.zcwf_button {
    background: #111 !important;
    color: #fff !important;
    border: 1px solid #111 !important;
    padding: 14px 35px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    max-width: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(17, 17, 17, 0.15) !important;
}

.zcwf_lblLeft .formsubmit.zcwf_button:hover {
    background: #333 !important;
    border-color: #333 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(17, 17, 17, 0.2) !important;
}

/* Reset Button */
.zcwf_lblLeft .zcwf_button[type=reset] {
    background: transparent !important;
    color: #666 !important;
    border: 1px solid #ccc !important;
    padding: 14px 35px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
}

.zcwf_lblLeft .zcwf_button[type=reset]:hover {
    background: #f1f1f1 !important;
    color: #111 !important;
    border-color: #999 !important;
}

/* Responsive 1-Column on Mobile */
@media all and (max-width: 600px) {
    #webform7095652000000742005 {
        grid-template-columns: 1fr !important;
        padding: 25px !important;
    }
    .zcwf_row:last-of-type .zcwf_col_fld {
        flex-direction: column-reverse !important;
    }
    .zcwf_lblLeft .zcwf_button {
        width: 100% !important;
    }
}