﻿


@font-face {
    font-family: 'Pelak';
    src: url('../fonts/pelakfa-black.ttf') format('truetype');
    font-weight: 900;
}

@font-face {
    font-family: 'Pelak';
    src: url('../fonts/pelakfa-bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Pelak';
    src: url('../fonts/pelakfa-regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Pelak';
    src: url('../fonts/pelakfa-light.ttf') format('truetype');
    font-weight: 300;
}

* {
    font-family: 'Pelak', sans-serif;
}

body {
    background-color: #fff;
       color: #333;
    direction: rtl;
}

.hire-form {
    max-width: 700px;
    margin: 80px auto;
    background: linear-gradient(145deg, #fffef8, #fff7e0);
    border: 1px solid #f6c453;
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 0 20px rgba(246, 196, 83, 0.4);
}

.form-label {
    color: #b38b00;
    font-weight: bold;
}

.btn-gold {
    background-color: #f6c453;
    color: #000;
    border: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

    .btn-gold:hover {
        background-color: #ffd95a;
        transform: translateY(-2px);
    }

.info-box {
    background-color: #fff8e1;
    border: 1px solid #f6c453;
    border-radius: 12px;
    padding: 18px 24px;
    font-size: 0.9rem;
    line-height: 1.9;
    color: #333;
}

    .info-box i {
        color: #f6c453;
        margin-left: 6px;
    }


/* 🔸 استایل RadioButtonList (جنسیت) */
.rbl-gender {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 8px;
    margin-right: 10px;
}

    .rbl-gender input[type="radio"] {
        accent-color: #f6c453;
        transform: scale(1.2);
        cursor: pointer;
    }

    .rbl-gender label {
        margin-right: 6px;
        color: #333;
        font-weight: 500;
        cursor: pointer;
        transition: color 0.2s ease;
    }

    .rbl-gender input[type="radio"]:checked + label {
        color: #b38b00;
        font-weight: bold;
    }

/* 🔹 چک‌باکس‌های شیفت کاری */
.chk-shift {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
    margin-right: 10px;
}

    .chk-shift input[type="checkbox"] {
        accent-color: #f6c453;
        transform: scale(1.2);
        cursor: pointer;
    }

    .chk-shift label {
        color: #333;
        margin-right: 6px;
        font-weight: 500;
        cursor: pointer;
        transition: color 0.2s ease;
    }

    .chk-shift input[type="checkbox"]:checked + label {
        color: #b38b00;
    }

/* 🔸 افکت hover برای دکمه‌ها */
.btn-gold {
    background-color: #f6c453;
    color: #000;
    border: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

    .btn-gold:hover {
        background-color: #ffd95a;
        transform: translateY(-2px);
    }

/* 🔸 فاصله بین فیلدها */
.form-label {
    color: #b38b00;
    font-weight: bold;
    margin-bottom: 6px;
}