body {
            font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
                Roboto, "Helvetica Neue", Arial, sans-serif;
            font-size: 15px;
            color: #344054;
            line-height: 1.6;
            background-color: #fff;
        }

        .career-card {
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .form-control,
        .form-select {
            border-radius: 10px;
        }

        .btn-apply {
            border-radius: 12px;
            padding: 12px;
            font-weight: 600;
        }

        .form-control,
        .form-select {
            height: 45px;
            /* padding: 12px 16px; */
            /* font-size: 15px; */
            border-radius: 12px;
            border: 1.5px solid #d0d5dd;
            background-color: #fff;
            transition: all 0.25s ease;
        }

        /* Textarea */
        textarea.form-control {
            height: auto;
            min-height: 130px;
            resize: none;
        }

        /* Focus effect */
        .form-control:focus,
        .form-select:focus {
            border-color: #32528f;
            /* Bootstrap success */
            box-shadow: 0 14px 30px rgba(31, 113, 236, 0.35);
            background-color: #fff;
        }

        /* Placeholder */
        .form-control::placeholder {
            color: #98a2b3;
            font-size: 14px;
        }

        /* File input */
        input[type="file"].form-control {
            padding: 10px;
        }

        /* ============================= */
        /* LABELS */
        /* ============================= */

        .form-label {
            font-weight: 600;
            font-size: 14px;
            color: #344054;
            margin-bottom: 6px;
            margin-top: 20px;
        }

        /* ============================= */
        /* OPTIONAL - FORM CARD */
        /* ============================= */

        .form-card {
            border-radius: 18px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
            border: none;
        }

        /* Buttons */
        .btn-apply {
            background: linear-gradient(135deg, #32528f, #5382d9);
            border: none;
            border-radius: 14px;
            padding: 12px 20px;
            font-weight: 600;
            color: #fff;
        }

        .btn-apply:hover {
            color: #1f1c1c;
        }