/**
 * WP Admin Passwordless Login Styles
 */

#artistpro-passwordless {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

#passwordless-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.pwl-tab {
    flex: 1;
    padding: 10px 8px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.2s ease;
}

.pwl-tab:hover {
    background: #f0f0f0;
    border-color: #999;
}

.pwl-tab.active {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.pwl-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.pwl-form input.input {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
}

.pwl-form .button {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    height: auto;
}

.pwl-form .button-primary {
    background: #0073aa;
    border-color: #0073aa;
}

.pwl-form .button-primary:hover {
    background: #005177;
    border-color: #005177;
}

/* SMS code input styling */
#pwl-code {
    text-align: center;
    font-size: 28px;
    letter-spacing: 10px;
    font-family: monospace;
    padding: 15px;
}

/* Status messages */
#magic-link-status,
#sms-status,
#passkey-status {
    padding: 10px;
    border-radius: 4px;
    font-size: 13px;
    margin-top: 10px;
}

/* Resend link */
#resend-code {
    font-size: 12px;
    color: #666;
}

#resend-code:hover {
    color: #0073aa;
}

/* Mobile responsive */
@media (max-width: 480px) {
    #passwordless-tabs {
        flex-direction: column;
    }

    .pwl-tab {
        padding: 12px;
    }
}
