.job-popup-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.65); display: none; align-items: center; justify-content: center; z-index: 9999; backdrop-filter: blur(3px); } .job-popup-overlay.active { display: flex; } .job-popup { background: #fff; width: 100%; max-width: 550px; border-radius: 16px; padding: 0; position: relative; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18); overflow: hidden; animation: popupIn .25s ease; } @keyframes popupIn { from { opacity: 0; transform: translateY(20px) scale(.98); } to   { opacity: 1; transform: translateY(0) scale(1); } } .popup-header { background: #111; color: #fff; padding: 20px 24px; } .job-popup-title { font-size: 20px; font-weight: 600; margin: 0 0 4px; color:white; } .job-popup-subtitle { font-size: 13px; opacity: .75; margin: 0; } .job-popup-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; border: none; background: rgba(255,255,255,.15); color: #fff; font-size: 20px; cursor: pointer; transition: .2s; } .job-popup-close:hover { background: rgba(255,255,255,.25); } .job-popup-form { padding: 24px; } .form-row { margin-bottom: 14px; } .form-row label { display: block; font-size: 12px; font-weight: 500; margin-bottom: 6px; color: #333; } .job-popup-form input, .job-popup-form textarea { width: 100%; padding: 12px 14px; border-radius: 8px; border: 1px solid #ddd; font-size: 14px; background: #fff; } .job-popup-form input:focus, .job-popup-form textarea:focus { outline: none; border-color: #111; } .job-popup-form textarea { resize: vertical; min-height: 90px; } .file-label { display: block; padding: 14px; border: 1px dashed #ccc; border-radius: 8px; text-align: center; font-size: 14px; cursor: pointer; background: #fafafa; color: #555; } .file-label:hover { border-color: #111; background: #f5f5f5; } .file-label input { display: none; } .file-preview { display: none; margin-top: 8px; padding: 8px 12px; background: #f3f3f3; border-radius: 6px; font-size: 13px; color: #333; } .file-preview.show { display: block; } .form-checkbox { display: flex; gap: 8px; margin-bottom: 10px; } .form-checkbox input { margin-top: 3px; } .form-checkbox label { font-size: 13px; color: #555; } .form-checkbox a { color: #111; text-decoration: underline; } .job-submit-btn { width: 100%; padding: 14px; background: #111; color: #fff; border: none; border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; } .job-submit-btn:hover { background: #000; } @media (max-height: 700px) { .job-popup { max-height: 90vh; overflow-y: auto; } } @media (max-width: 480px) { .job-popup { margin: 0 16px; } .popup-header, .job-popup-form { padding: 20px; } } .job-popup-form .form-row { display: flex; align-items: center; gap: 16px; } .job-popup-form .form-row > label { flex: 0 0 140px; margin: 0; font-size: 13px; font-weight: 500; color: #333; text-align: left; } .job-popup-form .form-row input, .job-popup-form .form-row textarea, .job-popup-form .form-row .file-label { flex: 1; width: 100%; } .job-popup-form .form-row textarea { align-self: flex-start; } .job-popup-form .form-row .file-label { margin: 0; } .job-popup-form .form-checkbox { display: flex; align-items: flex-start; gap: 10px; } .job-popup-form .form-checkbox input[type="checkbox"] { width: 16px !important; height: 16px; margin-top: 3px; } @media (max-width: 480px) { .job-popup-form .form-row { flex-direction: column; align-items: stretch; gap: 6px; } .job-popup-form .form-row > label { flex: none; max-width: 100%; } .job-popup-form .form-checkbox { margin-left: 0; } }