/* =========================
   JOIN US FORM (SCOPED ONLY)
========================= */
.joinus-form-wrapper {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* =========================
   GRID LAYOUT
========================= */
.joinus-form-wrapper .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.joinus-form-wrapper .full-width {
    grid-column: span 2;
}

/* =========================
   FORM GROUP
========================= */
.joinus-form-wrapper .form-group {
    display: flex;
    flex-direction: column;
}

/* =========================
   LABEL
========================= */
.joinus-form-wrapper label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: rgba(255,255,255,0.8);
}

/* =========================
   INPUT / SELECT / TEXTAREA
========================= */
.joinus-form-wrapper input,
.joinus-form-wrapper select,
.joinus-form-wrapper textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.25s ease;
}

/* Placeholder */
.joinus-form-wrapper input::placeholder,
.joinus-form-wrapper textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

/* Focus Effect */
.joinus-form-wrapper input:focus,
.joinus-form-wrapper select:focus,
.joinus-form-wrapper textarea:focus {
    border-color: #d35400;
    background: rgba(255,255,255,0.08);
    box-shadow: 
        0 0 0 2px rgba(211, 84, 0, 0.2),
        0 6px 20px rgba(211, 84, 0, 0.15);
}

/* =========================
   TEXTAREA
========================= */
.joinus-form-wrapper textarea {
    resize: vertical;
}

/* =========================
   BUTTON
========================= */
.joinus-form-wrapper button {
    margin-top: 20px;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #0b2d72, #d35400);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.joinus-form-wrapper button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(211, 84, 0, 0.35);
}

.joinus-form-wrapper button:active {
    transform: scale(0.98);
}

.joinus-form-wrapper button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* =========================
   VALIDATION STATES
========================= */
.joinus-form-wrapper .input-error {
    border-color: #ff4d4d !important;
    box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.2);
}

.joinus-form-wrapper .error-text {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 4px;
}

/* =========================
   SELECT STYLING (DARK GLASS)
========================= */
.joinus-form-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.25s ease;
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

.joinus-form-wrapper select:focus {
    border-color: #d35400;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0 0 2px rgba(211, 84, 0, 0.2),
        0 6px 20px rgba(211, 84, 0, 0.15);
}

.joinus-form-wrapper select option {
    background: rgba(11, 45, 114, 0.9);
    color: #fff;
    padding: 8px;
}

.joinus-form-wrapper select option:checked {
    background: #d35400;
    color: #fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .joinus-form-wrapper {
        padding: 20px;
    }
    .joinus-form-wrapper .form-grid {
        grid-template-columns: 1fr;
    }
    .joinus-form-wrapper .full-width {
        grid-column: span 1;
    }
}
/* Basic multi-step styles */
    .form-page {
        display: none;
    }

    .form-page.active {
        display: block;
    }

    button {
        padding: 10px 20px;
        margin-top: 15px;
        cursor: pointer;
    }