
/* ===== WRAPPER ===== */
.join-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

/* Background blur dots */
.join-wrap::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(218, 25, 89, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 85% 75%, rgba(249, 144, 81, 0.06) 0%, transparent 35%);
}

/* ===== MAIN CARD ===== */
.join-box {
    display: flex;
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
}

.join-box-sm {
    max-width: 440px;
}

/* Side Accent */



/* ===== CONTENT ===== */
.join-main {
    flex: 1;
    padding: 40px;
    background: #ffffff;
}

/* Header */
.join-top {
    margin-bottom: 30px;
}

.join-center {
    text-align: center;
}

.join-icon-main {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(218, 25, 89, 0.1), rgba(249, 144, 81, 0.08));
    border: 1px solid rgba(218, 25, 89, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #962155;
    font-size: 32px;
}

.join-top h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.join-top p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

/* ===== FORM ===== */
.join-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.join-form-sm {
    gap: 16px;
}

/* Input Field */
.join-field {
    position: relative;
    height: 54px;
}

.join-field > i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #da1959;
    font-size: 18px;
    z-index: 2;
}

.join-field input {
    width: 100%;
    height: 54px;
    padding: 0 50px 0 52px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    color: #1e293b;
    font-size: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none;
    transition: all 0.2s;
}

.join-field input:focus {
    border-color: rgba(218, 25, 89, 0.4);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(218, 25, 89, 0.08);
}

.join-field input::placeholder {
    color: #94a3b8;
}

/* Password Toggle */
.join-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: #f1f5f9;
    border: none;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.2s;
}

.join-toggle:hover {
    background: rgba(218, 25, 89, 0.1);
    color: #da1959;
}

/* Captcha */
.join-cap {
    display: flex;
    justify-content: center;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px dashed #e2e8f0;
    margin: 5px 0;
}

/* Submit Button */
.join-btn {
    height: 54px;
    background: linear-gradient(135deg, #700d3b, #fe589e) !important;
    border: none;
    border-radius: 14px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    margin-top: 5px;
}

.join-btn:hover {
    transform: translateY(-2px);
}

.join-btn i {
    font-size: 18px;
}

/* Links */
.join-links {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 5px 0;
}

.join-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.join-link i {
    color: #da1959;
    font-size: 14px;
}

.join-link:hover {
    color: #da1959;
}

/* Footer */
.join-foot {
    text-align: center;
    color: #64748b;
    font-size: 14px;
    padding-top: 15px;
}

.join-foot-line {
    border-top: 1px solid #e2e8f0;
    margin-top: 10px;
}

.join-foot a {
    color: #cc3e7b;
    text-decoration: none;
    font-weight: 700;
    margin-left: 6px;
    transition: color 0.2s;
}

.join-foot a:hover {
    color: #f99051;
}

/* ===== BOTTOM INFO ===== */
.join-info {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding: 18px 35px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}

.join-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

.join-item i {
    color: #cc3e7b;
    font-size: 18px;
}

/* ===== ALERTS ===== */
.alert {
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(25, 135, 84, 0.08);
    border: 1px solid rgba(25, 135, 84, 0.15);
    color: #198754;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.15);
    color: #dc3545;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
    .join-wrap {
        padding: 20px 15px;
    }
    
    .join-main {
        padding: 30px 25px;
    }
    
    .join-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .join-info {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        border-radius: 20px;
        padding: 20px;
    }
    
    .join-item span {
        display: inline;
    }
}
