/* Auth Register Module - CSS */

.auth-logo-box {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-logo-icon {
    width: 32px;
    height: 32px;
}

#username-status {
    display: block;
    font-size: 11px;
}

.btn-nav-prev {
    width: 120px;
}

#register-message {
    display: none;
}

.success-icon-large {
    width: 48px;
    height: 48px;
}

/* Styles from register.php style block */
:root {
    --primary: #c29e5a;
    --primary-rgb: 194, 158, 90;
}

body.register-body { 
    background: #0a0c10; 
    color: #f1f5f9;
    font-family: 'Inter', sans-serif; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    min-height: 100vh;
    padding: 40px 20px;
    margin: 0;
}

.register-container {
    max-width: 800px;
    width: 100%;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.register-card { 
    background: rgba(22, 25, 30, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px; 
    border-radius: 32px; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.5); 
}

.register-header h2 { 
    font-weight: 800; 
    font-size: 28px;
    margin-bottom: 8px; 
    color: #fff; 
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255,255,255,0.05);
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1b26;
    border: 2px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 700;
    transition: all 0.3s ease;
}

.step-item.active .step-dot {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4);
}

.step-item.completed .step-dot {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}

.step-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
}

.step-item.active .step-label { color: #fff; }

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.plan-card {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.plan-card:hover {
    border-color: rgba(var(--primary-rgb), 0.4);
    background: rgba(var(--primary-rgb), 0.05);
    transform: translateY(-5px);
}

.plan-card.selected {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.plan-card.selected::after {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.plan-name {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.plan-price {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
}

.plan-price small {
    font-size: 14px;
    font-weight: 600;
    color: #94a3b8;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    text-align: left;
}

.plan-features li {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features li i {
    color: #10b981;
    width: 16px;
    height: 16px;
}

.btn-nav-row {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    color: #94a3b8;
    font-size: 14px;
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.slug-preview {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.slug-preview strong { color: var(--primary); }

#register-message.success-vibe {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    padding: 20px;
    border-radius: 16px;
    color: #fff;
}

#register-message.success-vibe .btn-login-now {
    background: #10b981;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 15px;
    transition: 0.3s;
}
#register-message.success-vibe .btn-login-now:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}
