
/*Join Us Request Page*/

.join-request-section {
    position: relative;
    overflow: hidden;
}

.join-request-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 15% 20%, rgba(13, 110, 253, 0.10), transparent 28%),
            radial-gradient(circle at 85% 10%, rgba(32, 201, 151, 0.12), transparent 26%);
    pointer-events: none;
}

.join-request-shell {
    position: relative;
    z-index: 1;
}

.join-request-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(13, 110, 253, 0.08);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(7, 28, 62, 0.10);
    padding: 42px;
}

.join-request-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.08);
    color: var(--theme-color);
    font-weight: 700;
    margin-bottom: 18px;
}

.join-request-card .sec-title {
    margin-bottom: 14px;
}

.join-request-card .sec-text {
    max-width: 720px;
    margin-bottom: 0;
    color: #5f6f89;
    line-height: 1.9;
}

.join-form-card {
    margin-top: 30px;
    padding: 26px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(7, 28, 62, 0.08);
}

.join-field label {
    color: #102039;
    font-weight: 700;
    margin-bottom: 10px;
}

.join-field .form-control {
    min-height: 56px;
    border-radius: 14px;
    border-color: rgba(7, 28, 62, 0.12);
    background-color: #fbfcff;
    transition: all 0.2s ease;
}

.join-field .form-control:focus {
    border-color: var(--theme-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.10);
}

.join-interest-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.join-interest-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    height: 100%;
    padding: 16px;
    border: 1px solid rgba(7, 28, 62, 0.10);
    border-radius: 16px;
    background: #fbfcff;
    transition: all 0.2s ease;
}

.join-interest-card:hover {
    transform: translateY(-2px);
    border-color: rgba(13, 110, 253, 0.35);
    box-shadow: 0 14px 35px rgba(7, 28, 62, 0.08);
}

.join-interest-card .form-check-input {
    margin-top: 4px;
    float: none;
}

.join-interest-card .form-check-label {
    cursor: pointer;
    font-weight: 700;
    color: #102039;
    line-height: 1.6;
}

.join-helper {
    display: block;
    margin-top: 7px;
    color: #7a8799;
    font-size: 13px;
}

.join-submit-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 8px;
}

.join-submit-area .th-btn {
    min-width: 190px;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.22);
}

.join-alert {
    border: 0;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 18px 45px rgba(7, 28, 62, 0.08);
}

.join-alert .alert-icon {
    flex: 0 0 auto;
}

.join-success-wrap {
    max-width: 820px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .join-request-card {
        padding: 28px;
    }

    .join-interest-grid {
        grid-template-columns: 1fr;
    }

    .join-submit-area {
        align-items: stretch;
        flex-direction: column;
    }

    .join-submit-area .th-btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .join-request-card {
        padding: 22px;
        border-radius: 22px;
    }

    .join-form-card {
        padding: 18px;
    }
}