/* ============================================================
   NSET Vacancy Forms — Public Styles
   Preserves original class names; adds styling & enhancements
   ============================================================ */

/* Wrapper */
.nset-vf-wrapper {
    /*max-width: 900px;*/
    /*margin: 0 auto;*/
    /*font-family: inherit;*/
/*}*/

/* Deadline notice */
.nset-vf-deadline {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-left: 4px solid #f97316;
    color: #9a3412;
    padding: 10px 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
}

/* Closed notice */
.nset-vf-closed {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 4px solid #ef4444;
    color: #991b1b;
    padding: 16px 20px;
    border-radius: 4px;
    font-size: 15px;
}

/* Form container */
/*.common-form-wrapper {*/
    /*background: #fff;*/
    /*border-radius: 8px;*/
    /*box-shadow: 0 1px 4px rgba(0,0,0,.08), 0 4px 24px rgba(0,0,0,.06);*/
    /*overflow: hidden;*/
/*}*/

/*.form-container {*/
    /*padding: 0;*/
/*}*/

/*.form-title {*/
    /*background: #1a3d6e;*/
    /*padding: 20px 32px;*/
/*}*/

/*.form-title h4 {*/
    /*margin: 0;*/
    /*color: #fff;*/
    /*font-size: 18px;*/
    /*font-weight: 600;*/
    /*letter-spacing: .3px;*/
/*}*/

/*.common-form {*/
    /*padding: 28px 32px 32px;*/
/*}*/

/* Fields grid */
/*.fields {*/
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*gap: 20px;*/
    /*margin-bottom: 8px;*/
/*}*/

/*.form-group {*/
    /*display: flex;*/
    /*flex-direction: column;*/
    /*gap: 6px;*/
    /*width: 100%;*/
    /*box-sizing: border-box;*/
/*}*/

/* type-two: 3 columns on desktop */
/*.form-group.type-two {*/
    /*flex: 1 1 calc(33.333% - 14px);*/
    /*min-width: 180px;*/
/*}*/

/* half-width: 2 columns on desktop */
/*.form-group.half-width {*/
    /*flex: 1 1 calc(50% - 10px);*/
    /*min-width: 200px;*/
/*}*/

/* Labels */
/*.form-group label,*/
/*.form-group > label {*/
    /*font-size: 13px;*/
    /*font-weight: 600;*/
    /*color: #374151;*/
    /*line-height: 1.4;*/
/*}*/

/*.form-group label span,*/
/*.form-group > label span {*/
    /*color: #ef4444;*/
    /*margin-left: 2px;*/
/*}*/

/* Inputs */
/*.form-group input[type="text"],*/
/*.form-group input[type="email"],*/
/*.form-group select {*/
    /*width: 100%;*/
    /*padding: 9px 12px;*/
    /*border: 1px solid #d1d5db;*/
    /*border-radius: 5px;*/
    /*font-size: 14px;*/
    /*color: #111827;*/
    /*background: #fafafa;*/
    /*transition: border-color .15s, box-shadow .15s;*/
    /*box-sizing: border-box;*/
    /*appearance: none;*/
    /*-webkit-appearance: none;*/
/*}*/

/*.form-group select {*/
    /*background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");*/
    /*background-repeat: no-repeat;*/
    /*background-position: right 12px center;*/
    /*padding-right: 32px;*/
/*}*/

/*.form-group input[type="text"]:focus,*/
/*.form-group input[type="email"]:focus,*/
/*.form-group select:focus {*/
    /*outline: none;*/
    /*border-color: #1a3d6e;*/
    /*box-shadow: 0 0 0 3px rgba(26,61,110,.12);*/
    /*background: #fff;*/
/*}*/

/* Validation error state */
/*.form-group input.nset-error,*/
/*.form-group select.nset-error {*/
    /*border-color: #ef4444;*/
    /*box-shadow: 0 0 0 3px rgba(239,68,68,.12);*/
/*}*/

/* File upload */
.file-upload { width: 100%; }

/* The clickable div */
.file-upload-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border: 1.5px dashed #d1d5db;
    border-radius: 5px;
    background: #fafafa;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    user-select: none;
}

.file-upload-label:hover {
    border-color: #1a3d6e;
    background: #eff6ff;
}

.file-upload-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.file-upload-text {
    font-size: 13px;
    color: #6b7280;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .15s;
}

/* Hide the native file input — but keep it in the DOM */
.file-upload input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Checkbox group */
/*.custom-checkbox-group,*/
/*.custom-radio-group,*/
/*.option-group,*/
/*.checkbox-group {*/
    /*width: 100%;*/
/*}*/

/*.option-item {*/
    /*padding: 14px 16px;*/
    /*background: #f8fafc;*/
    /*border: 1px solid #e2e8f0;*/
    /*border-radius: 6px;*/
/*}*/

/*.option-label {*/
    /*display: flex;*/
    /*align-items: flex-start;*/
    /*gap: 10px;*/
    /*cursor: pointer;*/
    /*font-weight: normal !important;*/
/*}*/

/*.option-label input[type="checkbox"] {*/
    /*margin-top: 3px;*/
    /*flex-shrink: 0;*/
    /*width: 16px;*/
    /*height: 16px;*/
    /*accent-color: #1a3d6e;*/
    /*cursor: pointer;*/
/*}*/

/*.option-text {*/
    /*font-size: 13px;*/
    /*color: #4b5563;*/
    /*line-height: 1.6;*/
/*}*/

/* Submit button */
/*.form-action.forms {*/
    /*margin-top: 24px;*/
/*}*/



/*.co-btn:hover { background: #153261; }*/
/*.co-btn:active { transform: scale(.99); }*/
/*.co-btn:disabled { opacity: .65; cursor: not-allowed; }*/

.co-btn.width-full { width: 100%; }

/* Thank you message */
.nset-vf-thank-you h4 {
    color: #065f46;
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    border-radius: 6px;
    padding: 16px 20px;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

/* Inline message */
.nset-vf-message {
    padding: 12px 16px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.nset-vf-message.success {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.nset-vf-message.error {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}


