/* فرم کلی */
.joinup-form-wrapper {
    margin: 0 auto;
    position: relative;
}

/* تیتر فرم */
.joinup-form-wrapper .joinup-form-title{
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    color: #2c3e50;
}

/* گروه فیلد */
.joinup-form-wrapper .joinup-form-group {
    position: relative;
    margin-bottom: 1.8rem;
}

/* ورودی‌ها */
.joinup-form-wrapper .joinup-form-control {
    width: 100%;
    padding: 1.2rem 1rem 0.4rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    height: 58px;
}

/* textarea ارتفاع بیشتر */
.joinup-form-wrapper textarea.joinup-form-control {
    height: auto;
    min-height: 120px;
    resize: vertical;
}

/* لیبل شناور */
.joinup-form-wrapper .joinup-form-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1rem;
    color: #6c757d;
    transition: all 0.2s ease;
    background-color: #fff;
    padding: 0 .25rem;
    z-index: 2;
    pointer-events: none;
}

/* وقتی فیلد فوکوس یا پر شده */
.joinup-form-wrapper .joinup-form-control:focus ~ .joinup-form-label,
.joinup-form-wrapper .joinup-form-control:not(:placeholder-shown) ~ .joinup-form-label,
.joinup-form-wrapper textarea.joinup-form-control:not(:placeholder-shown) ~ .joinup-form-label {
    top: -0.65rem;
    right: 0.75rem;
    font-size: 0.85rem;
    color: #0d6efd;
}

/* فوکوس فیلد */
.joinup-form-wrapper .joinup-form-control:focus {
    border-color: #0d6efd;
    outline: 0;
    box-shadow: 0 0 0 0.1rem rgba(13, 110, 253, 0.25);
}

/* دکمه ارسال */
.joinup-form-wrapper .joinup-submit-btn {
    display: block;
    width: 100%;
    color: #fff;
    font-weight: bold;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}


/* پیام موفقیت */
.joinup-form-message {
    color: red;
    margin-top: 10px;
    font-size: 14px;
}

.joinup-modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
}

.joinup-modal-success {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    z-index: 1000;
    text-align: center;
    max-width: 90%;
}

.joinup-modal-button {
    display: inline-block;
    margin-top: 15px;
    background: #0073aa;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
}


/* ریسپانسیو */
@media (max-width: 576px) {
    .joinup-form-wrapper {
        padding: 20px;
    }
}




