/**
 * Login panel switcher of the [sk_login] shortcode.
 */
.sk-login-tabs { max-width: 480px; margin: 0 auto; }
.sk-login-tab-buttons {
    display: flex; gap: 0; border-bottom: 2px solid #2b3240;
    margin-bottom: 1.5rem;
}
.sk-login-tab-btn {
    flex: 1; padding: 12px 16px; border: none; background: #181e27;
    color: #8b949e; font-size: 15px; font-weight: 600; cursor: pointer;
    border-bottom: 3px solid transparent; transition: all 0.2s;
}
.sk-login-tab-btn:first-child { border-radius: 8px 0 0 0; }
.sk-login-tab-btn:last-child { border-radius: 0 8px 0 0; }
.sk-login-tab-btn:hover { color: #e2e8f0; background: #1f2733; }
.sk-login-tab-btn.active {
    color: #f7931a; border-bottom-color: #f7931a; background: #1f2733;
}
.sk-login-panel { display: none; text-align: center; padding: 1rem 0; }
.sk-login-panel.active { display: block; }
@media (max-width: 480px) {
    .sk-login-tab-btn { font-size: 13px; padding: 10px 8px; }
}
